Official Go implementation of the Ethereum protocol
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package ethutil
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestPreProcess(t *testing.T) {
|
|
main, init := PreProcess(`
|
|
init {
|
|
// init
|
|
if a > b {
|
|
if {
|
|
}
|
|
}
|
|
}
|
|
|
|
main {
|
|
// main
|
|
if a > b {
|
|
if c > d {
|
|
}
|
|
}
|
|
}
|
|
`)
|
|
|
|
fmt.Println("main")
|
|
fmt.Println(main)
|
|
fmt.Println("init")
|
|
fmt.Println(init)
|
|
}
|
|
|