SetMacroCall sets the macro call metadata for the given macro id within the tracked source info metadata.
(id int64, expr ast.Expr)
| 309 | // SetMacroCall sets the macro call metadata for the given macro id within the tracked source info |
| 310 | // metadata. |
| 311 | func (opt *optimizerExprFactory) SetMacroCall(id int64, expr ast.Expr) { |
| 312 | opt.sourceInfo.SetMacroCall(id, expr) |
| 313 | } |
| 314 | |
| 315 | // MacroCalls returns the map of macro calls currently in the context. |
| 316 | func (opt *optimizerExprFactory) MacroCalls() map[int64]ast.Expr { |
no outgoing calls