Method: Code::Parser::Whitespace#root

Defined in:
lib/code/parser/whitespace.rb

#rootObject



43
44
45
46
47
48
# File 'lib/code/parser/whitespace.rb', line 43

def root
  (
    space | newline | hash_comment | double_slash_comment |
      multi_line_comment
  ).repeat(1)
end