class Piggly::Parser::Nodes::TWhitespace

This seems like it should be a Token, but it may contain TComment children that should be highlighted differently than the enclosing whitespace

Public Instance Methods

terminal?() click to toggle source
# File lib/piggly/parser/nodes.rb, line 287
def terminal?
  false
end
whitespace?() click to toggle source
# File lib/piggly/parser/nodes.rb, line 291
def whitespace?
  true
end