github.com/goplus/igop@v0.25.0/pkg/html/template/go121_export.go (about) 1 // export by github.com/goplus/igop/cmd/qexp 2 3 //go:build go1.21 4 // +build go1.21 5 6 package template 7 8 import ( 9 q "html/template" 10 11 "go/constant" 12 "reflect" 13 14 "github.com/goplus/igop" 15 ) 16 17 func init() { 18 igop.RegisterPackage(&igop.Package{ 19 Name: "template", 20 Path: "html/template", 21 Deps: map[string]string{ 22 "bytes": "bytes", 23 "encoding/json": "json", 24 "fmt": "fmt", 25 "html": "html", 26 "internal/godebug": "godebug", 27 "io": "io", 28 "io/fs": "fs", 29 "os": "os", 30 "path": "path", 31 "path/filepath": "filepath", 32 "reflect": "reflect", 33 "regexp": "regexp", 34 "strconv": "strconv", 35 "strings": "strings", 36 "sync": "sync", 37 "text/template": "template", 38 "text/template/parse": "parse", 39 "unicode": "unicode", 40 "unicode/utf8": "utf8", 41 }, 42 Interfaces: map[string]reflect.Type{}, 43 NamedTypes: map[string]reflect.Type{ 44 "CSS": reflect.TypeOf((*q.CSS)(nil)).Elem(), 45 "Error": reflect.TypeOf((*q.Error)(nil)).Elem(), 46 "ErrorCode": reflect.TypeOf((*q.ErrorCode)(nil)).Elem(), 47 "HTML": reflect.TypeOf((*q.HTML)(nil)).Elem(), 48 "HTMLAttr": reflect.TypeOf((*q.HTMLAttr)(nil)).Elem(), 49 "JS": reflect.TypeOf((*q.JS)(nil)).Elem(), 50 "JSStr": reflect.TypeOf((*q.JSStr)(nil)).Elem(), 51 "Srcset": reflect.TypeOf((*q.Srcset)(nil)).Elem(), 52 "Template": reflect.TypeOf((*q.Template)(nil)).Elem(), 53 "URL": reflect.TypeOf((*q.URL)(nil)).Elem(), 54 }, 55 AliasTypes: map[string]reflect.Type{ 56 "FuncMap": reflect.TypeOf((*q.FuncMap)(nil)).Elem(), 57 }, 58 Vars: map[string]reflect.Value{}, 59 Funcs: map[string]reflect.Value{ 60 "HTMLEscape": reflect.ValueOf(q.HTMLEscape), 61 "HTMLEscapeString": reflect.ValueOf(q.HTMLEscapeString), 62 "HTMLEscaper": reflect.ValueOf(q.HTMLEscaper), 63 "IsTrue": reflect.ValueOf(q.IsTrue), 64 "JSEscape": reflect.ValueOf(q.JSEscape), 65 "JSEscapeString": reflect.ValueOf(q.JSEscapeString), 66 "JSEscaper": reflect.ValueOf(q.JSEscaper), 67 "Must": reflect.ValueOf(q.Must), 68 "New": reflect.ValueOf(q.New), 69 "ParseFS": reflect.ValueOf(q.ParseFS), 70 "ParseFiles": reflect.ValueOf(q.ParseFiles), 71 "ParseGlob": reflect.ValueOf(q.ParseGlob), 72 "URLQueryEscaper": reflect.ValueOf(q.URLQueryEscaper), 73 }, 74 TypedConsts: map[string]igop.TypedConst{ 75 "ErrAmbigContext": {reflect.TypeOf(q.ErrAmbigContext), constant.MakeInt64(int64(q.ErrAmbigContext))}, 76 "ErrBadHTML": {reflect.TypeOf(q.ErrBadHTML), constant.MakeInt64(int64(q.ErrBadHTML))}, 77 "ErrBranchEnd": {reflect.TypeOf(q.ErrBranchEnd), constant.MakeInt64(int64(q.ErrBranchEnd))}, 78 "ErrEndContext": {reflect.TypeOf(q.ErrEndContext), constant.MakeInt64(int64(q.ErrEndContext))}, 79 "ErrJSTemplate": {reflect.TypeOf(q.ErrJSTemplate), constant.MakeInt64(int64(q.ErrJSTemplate))}, 80 "ErrNoSuchTemplate": {reflect.TypeOf(q.ErrNoSuchTemplate), constant.MakeInt64(int64(q.ErrNoSuchTemplate))}, 81 "ErrOutputContext": {reflect.TypeOf(q.ErrOutputContext), constant.MakeInt64(int64(q.ErrOutputContext))}, 82 "ErrPartialCharset": {reflect.TypeOf(q.ErrPartialCharset), constant.MakeInt64(int64(q.ErrPartialCharset))}, 83 "ErrPartialEscape": {reflect.TypeOf(q.ErrPartialEscape), constant.MakeInt64(int64(q.ErrPartialEscape))}, 84 "ErrPredefinedEscaper": {reflect.TypeOf(q.ErrPredefinedEscaper), constant.MakeInt64(int64(q.ErrPredefinedEscaper))}, 85 "ErrRangeLoopReentry": {reflect.TypeOf(q.ErrRangeLoopReentry), constant.MakeInt64(int64(q.ErrRangeLoopReentry))}, 86 "ErrSlashAmbig": {reflect.TypeOf(q.ErrSlashAmbig), constant.MakeInt64(int64(q.ErrSlashAmbig))}, 87 "OK": {reflect.TypeOf(q.OK), constant.MakeInt64(int64(q.OK))}, 88 }, 89 UntypedConsts: map[string]igop.UntypedConst{}, 90 }) 91 }