Sha256: 0c9f2e2a76c51d7d7792a4747f748f3133aa0f3a46cdda2474833fdac4f54699
Contents?: true
Size: 449 Bytes
Versions: 15
Compression:
Stored size: 449 Bytes
Contents
# coding: utf-8 # Treetop (http://treetop.rubyforge.org/) grammar for common definitions. require 'treetop' module Fig module Grammar grammar Base rule ws [ \n\r\t]+ end rule optional_ws [ \n\r\t]* end rule comment '#' [^\n]* "\n" end rule ws_or_comment ws / comment end rule optional_ws_or_comment ws_or_comment* end end end end
Version data entries
15 entries across 15 versions & 1 rubygems