github.com/goplus/igop@v0.25.0/pkg/html/template/go120_export.go (about) 1 // export by github.com/goplus/igop/cmd/qexp 2 3 //go:build go1.20 && !go1.21 4 // +build go1.20,!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 "strconv": "strconv", 34 "strings": "strings", 35 "sync": "sync", 36 "text/template": "template", 37 "text/template/parse": "parse", 38 "unicode": "unicode", 39 "unicode/utf8": "utf8", 40 }, 41 Interfaces: map[string]reflect.Type{}, 42 NamedTypes: map[string]reflect.Type{ 43 "CSS": reflect.TypeOf((*q.CSS)(nil)).Elem(), 44 "Error": reflect.TypeOf((*q.Error)(nil)).Elem(), 45 "ErrorCode": reflect.TypeOf((*q.ErrorCode)(nil)).Elem(), 46 "HTML": reflect.TypeOf((*q.HTML)(nil)).Elem(), 47 "HTMLAttr": reflect.TypeOf((*q.HTMLAttr)(nil)).Elem(), 48 "JS": reflect.TypeOf((*q.JS)(nil)).Elem(), 49 "JSStr": reflect.TypeOf((*q.JSStr)(nil)).Elem(), 50 "Srcset": reflect.TypeOf((*q.Srcset)(nil)).Elem(), 51 "Template": reflect.TypeOf((*q.Template)(nil)).Elem(), 52 "URL": reflect.TypeOf((*q.URL)(nil)).Elem(), 53 }, 54 AliasTypes: map[string]reflect.Type{ 55 "FuncMap": reflect.TypeOf((*q.FuncMap)(nil)).Elem(), 56 }, 57 Vars: map[string]reflect.Value{}, 58 Funcs: map[string]reflect.Value{ 59 "HTMLEscape": reflect.ValueOf(q.HTMLEscape), 60 "HTMLEscapeString": reflect.ValueOf(q.HTMLEscapeString), 61 "HTMLEscaper": reflect.ValueOf(q.HTMLEscaper), 62 "IsTrue": reflect.ValueOf(q.IsTrue), 63 "JSEscape": reflect.ValueOf(q.JSEscape), 64 "JSEscapeString": reflect.ValueOf(q.JSEscapeString), 65 "JSEscaper": reflect.ValueOf(q.JSEscaper), 66 "Must": reflect.ValueOf(q.Must), 67 "New": reflect.ValueOf(q.New), 68 "ParseFS": reflect.ValueOf(q.ParseFS), 69 "ParseFiles": reflect.ValueOf(q.ParseFiles), 70 "ParseGlob": reflect.ValueOf(q.ParseGlob), 71 "URLQueryEscaper": reflect.ValueOf(q.URLQueryEscaper), 72 }, 73 TypedConsts: map[string]igop.TypedConst{ 74 "ErrAmbigContext": {reflect.TypeOf(q.ErrAmbigContext), constant.MakeInt64(int64(q.ErrAmbigContext))}, 75 "ErrBadHTML": {reflect.TypeOf(q.ErrBadHTML), constant.MakeInt64(int64(q.ErrBadHTML))}, 76 "ErrBranchEnd": {reflect.TypeOf(q.ErrBranchEnd), constant.MakeInt64(int64(q.ErrBranchEnd))}, 77 "ErrEndContext": {reflect.TypeOf(q.ErrEndContext), constant.MakeInt64(int64(q.ErrEndContext))}, 78 "ErrNoSuchTemplate": {reflect.TypeOf(q.ErrNoSuchTemplate), constant.MakeInt64(int64(q.ErrNoSuchTemplate))}, 79 "ErrOutputContext": {reflect.TypeOf(q.ErrOutputContext), constant.MakeInt64(int64(q.ErrOutputContext))}, 80 "ErrPartialCharset": {reflect.TypeOf(q.ErrPartialCharset), constant.MakeInt64(int64(q.ErrPartialCharset))}, 81 "ErrPartialEscape": {reflect.TypeOf(q.ErrPartialEscape), constant.MakeInt64(int64(q.ErrPartialEscape))}, 82 "ErrPredefinedEscaper": {reflect.TypeOf(q.ErrPredefinedEscaper), constant.MakeInt64(int64(q.ErrPredefinedEscaper))}, 83 "ErrRangeLoopReentry": {reflect.TypeOf(q.ErrRangeLoopReentry), constant.MakeInt64(int64(q.ErrRangeLoopReentry))}, 84 "ErrSlashAmbig": {reflect.TypeOf(q.ErrSlashAmbig), constant.MakeInt64(int64(q.ErrSlashAmbig))}, 85 "OK": {reflect.TypeOf(q.OK), constant.MakeInt64(int64(q.OK))}, 86 }, 87 UntypedConsts: map[string]igop.UntypedConst{}, 88 }) 89 }