NativeRep converts the AST to a Go-native representation.
()
| 52 | |
| 53 | // NativeRep converts the AST to a Go-native representation. |
| 54 | func (ast *Ast) NativeRep() *celast.AST { |
| 55 | if ast == nil { |
| 56 | return nil |
| 57 | } |
| 58 | return ast.impl |
| 59 | } |
| 60 | |
| 61 | // Expr returns the proto serializable instance of the parsed/checked expression. |
| 62 | // |
no outgoing calls