1// this file was generated by gomacro command: import _b "path/filepath"
2// DO NOT EDIT! Any change will be lost when the file is re-generated
3
4package imports
5
6import (
7	. "reflect"
8	"path/filepath"
9)
10
11// reflection: allow interpreted code to import "path/filepath"
12func init() {
13	Packages["path/filepath"] = Package{
14	Binds: map[string]Value{
15		"Abs":	ValueOf(filepath.Abs),
16		"Base":	ValueOf(filepath.Base),
17		"Clean":	ValueOf(filepath.Clean),
18		"Dir":	ValueOf(filepath.Dir),
19		"ErrBadPattern":	ValueOf(&filepath.ErrBadPattern).Elem(),
20		"EvalSymlinks":	ValueOf(filepath.EvalSymlinks),
21		"Ext":	ValueOf(filepath.Ext),
22		"FromSlash":	ValueOf(filepath.FromSlash),
23		"Glob":	ValueOf(filepath.Glob),
24		"HasPrefix":	ValueOf(filepath.HasPrefix),
25		"IsAbs":	ValueOf(filepath.IsAbs),
26		"Join":	ValueOf(filepath.Join),
27		"ListSeparator":	ValueOf(filepath.ListSeparator),
28		"Match":	ValueOf(filepath.Match),
29		"Rel":	ValueOf(filepath.Rel),
30		"Separator":	ValueOf(filepath.Separator),
31		"SkipDir":	ValueOf(&filepath.SkipDir).Elem(),
32		"Split":	ValueOf(filepath.Split),
33		"SplitList":	ValueOf(filepath.SplitList),
34		"ToSlash":	ValueOf(filepath.ToSlash),
35		"VolumeName":	ValueOf(filepath.VolumeName),
36		"Walk":	ValueOf(filepath.Walk),
37	}, Types: map[string]Type{
38		"WalkFunc":	TypeOf((*filepath.WalkFunc)(nil)).Elem(),
39	}, Untypeds: map[string]string{
40		"ListSeparator":	"rune:58",
41		"Separator":	"rune:47",
42	},
43	}
44}
45