class BELParser::Language::Semantics::SemanticsMissingNamespaceWarning
Public Class Methods
new(expression_node, spec)
click to toggle source
Calls superclass method
# File lib/bel_parser/language/semantics_ast_warnings.rb, line 62 def initialize(expression_node, spec) super(expression_node, spec) end
Public Instance Methods
to_s()
click to toggle source
# File lib/bel_parser/language/semantics_ast_warnings.rb, line 66 def to_s prefix = @expression_node.identifier && @expression_node.identifier.string_literal %(Missing namespace for prefix "#{prefix}".) end