MCPcopy Create free account
hub / github.com/araddon/qlbridge / parse

Method parse

expr/parse.go:265–272  ·  view source on GitHub ↗

parse take the tokens and recursively build into Node

()

Source from the content-addressed store, hash-verified

263
264// parse take the tokens and recursively build into Node
265func (t *tree) parse() (_ Node, err error) {
266 defer func() {
267 if p := recover(); p != nil {
268 err = fmt.Errorf("parse error: %v", p)
269 }
270 }()
271 return t.O(0), err
272}
273
274/*
275

Callers 3

ParseExpressionFunction · 0.45
ParseExprWithFuncsFunction · 0.45
ParsePagerFunction · 0.45

Calls 2

OMethod · 0.95
ErrorfMethod · 0.80

Tested by

no test coverage detected