nitc :: ModelBuilder :: warning
Alias for: self.toolcontext.warning(n.hot_location, text)
self.toolcontext.warning(n.hot_location, text)
# Helper function to display a warning on a node. # Alias for: `self.toolcontext.warning(n.hot_location, text)` fun warning(n: nullable ANode, tag, text: String) do var l = null if n != null then l = n.hot_location self.toolcontext.warning(l, tag, text) end