-
Notifications
You must be signed in to change notification settings - Fork 0
/
load.go
91 lines (75 loc) · 1.57 KB
/
load.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
package main
import (
"container/list"
"embed"
"fmt"
"os"
"path/filepath"
)
// load user-defined module.
func newmodule(modname string) (*module, error) {
dir, mod := filepath.Split(modname)
file := modtofile(mod)
bs, err := os.ReadFile(filepath.Join(dir, file))
if err != nil {
return nil, err
}
content := []rune(string(bs))
return &module{
name: mod,
filename: modtofile(modname),
directory: dir,
content: content,
globscope: newscope(),
funcscopes: list.New(),
}, nil
}
//go:embed std
var stdmodfs embed.FS
// load std module written in shiba.
func newstdmodule(mod string) (*module, error) {
file := modtofile(mod)
bs, err := stdmodfs.ReadFile(filepath.Join("std/", file))
if err != nil {
return nil, err
}
content := []rune(string(bs))
return &module{
name: mod,
filename: file,
directory: "std",
content: content,
globscope: newscope(),
funcscopes: list.New(),
}, nil
}
// load std module written in go.
func newgostdmodule(modname string) (*module, error) {
objs, ok := gostdmods.objs(modname)
if !ok {
return nil, fmt.Errorf("module %s undefined", modname)
}
m := &module{
name: modname,
filename: modname,
directory: "std",
content: nil,
globscope: newscope(),
funcscopes: list.New(),
}
for _, o := range objs {
m.setobj(o.name, o.o)
}
return m, nil
}
// load virtual module for repl.
func newreplmodule() *module {
return &module{
name: "repl",
filename: "repl",
directory: "",
content: nil,
globscope: newscope(),
funcscopes: list.New(),
}
}