SetMacroCall records a macro call at a specific location.
(id int64, e Expr)
| 325 | |
| 326 | // SetMacroCall records a macro call at a specific location. |
| 327 | func (s *SourceInfo) SetMacroCall(id int64, e Expr) { |
| 328 | if s != nil { |
| 329 | s.macroCalls[id] = e |
| 330 | } |
| 331 | } |
| 332 | |
| 333 | // ClearMacroCall removes the macro call at the given expression id. |
| 334 | func (s *SourceInfo) ClearMacroCall(id int64) { |
no outgoing calls