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