2
0
mirror of https://github.com/status-im/op-geth.git synced 2025-02-28 22:40:40 +00:00
This commit is contained in:
obscuren 2014-04-16 04:07:52 +02:00
parent d811920d8b
commit c5729d7ecc

@ -106,6 +106,7 @@ func Disassemble(script []byte) (asm []string) {
}
func PreProcess(data string) (mainInput, initInput string) {
// Regexp for parsing anything between brackets
reg := "\\(\\)\\s*{([\\d\\w\\W\\n\\s]+?)}"
mainReg := regexp.MustCompile("main" + reg)
initReg := regexp.MustCompile("init" + reg)