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