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