Implemented expression parsing
This commit is contained in:
9
src/build/expression/pool.go
Normal file
9
src/build/expression/pool.go
Normal file
@ -0,0 +1,9 @@
|
||||
package expression
|
||||
|
||||
import "sync"
|
||||
|
||||
var pool = sync.Pool{
|
||||
New: func() interface{} {
|
||||
return &Expression{}
|
||||
},
|
||||
}
|
Reference in New Issue
Block a user