CompiledVariable represents the variable name, expression, and associated type-check declaration.
| 89 | |
| 90 | // CompiledVariable represents the variable name, expression, and associated type-check declaration. |
| 91 | type CompiledVariable struct { |
| 92 | exprID int64 |
| 93 | name string |
| 94 | expr *cel.Ast |
| 95 | varDecl *decls.VariableDecl |
| 96 | } |
| 97 | |
| 98 | // SourceID returns the source metadata identifier associated with the variable. |
| 99 | func (v *CompiledVariable) SourceID() int64 { |
nothing calls this directly
no outgoing calls
no test coverage detected