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