aboutsummaryrefslogtreecommitdiffstats
path: root/utils/compile.go
diff options
context:
space:
mode:
Diffstat (limited to 'utils/compile.go')
-rw-r--r--utils/compile.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/compile.go b/utils/compile.go
index 6d75f73d1..967bd099b 100644
--- a/utils/compile.go
+++ b/utils/compile.go
@@ -24,7 +24,7 @@ func Compile(script string) ([]byte, error) {
func CompileScript(script string) ([]byte, []byte, error) {
// Preprocess
- mainInput, initInput := mutan.PreProcess(script)
+ mainInput, initInput := mutan.PreParse(script)
// Compile main script
mainScript, err := Compile(mainInput)
if err != nil {