diff options
author | obscuren <geffobscura@gmail.com> | 2014-05-10 22:25:08 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-05-10 22:25:08 +0800 |
commit | a3cc4b0b8048056037693f34c56b04d1a4efb22f (patch) | |
tree | 1f72dca81e9fbad641eedbaed73c7cfc6ad5992d /utils | |
parent | faa3aa14ed261dc11247c6c059c184e9a31d09c5 (diff) | |
parent | 23fc50c61b99735263eb682eb992c174eceea632 (diff) | |
download | dexon-a3cc4b0b8048056037693f34c56b04d1a4efb22f.tar dexon-a3cc4b0b8048056037693f34c56b04d1a4efb22f.tar.gz dexon-a3cc4b0b8048056037693f34c56b04d1a4efb22f.tar.bz2 dexon-a3cc4b0b8048056037693f34c56b04d1a4efb22f.tar.lz dexon-a3cc4b0b8048056037693f34c56b04d1a4efb22f.tar.xz dexon-a3cc4b0b8048056037693f34c56b04d1a4efb22f.tar.zst dexon-a3cc4b0b8048056037693f34c56b04d1a4efb22f.zip |
Merge branch 'release/poc5-rc3' into develop
Diffstat (limited to 'utils')
-rw-r--r-- | utils/compile.go | 2 |
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 { |