SetMacroCall records a macro call at a specific location.
(id int64, e Expr)
| 333 | |
| 334 | // SetMacroCall records a macro call at a specific location. |
| 335 | func (s *SourceInfo) SetMacroCall(id int64, e Expr) { |
| 336 | if s != nil { |
| 337 | s.macroCalls[id] = e |
| 338 | } |
| 339 | } |
| 340 | |
| 341 | // ClearMacroCall removes the macro call at the given expression id. |
| 342 | func (s *SourceInfo) ClearMacroCall(id int64) { |
no outgoing calls