Sha256: 253b6446bc0793d6bced697ce6a3c9dd076eff57b33cbb60d3390d5457dd5edb
Contents?: true
Size: 326 Bytes
Versions: 2
Compression:
Stored size: 326 Bytes
Contents
module WebIDL module ParseTree class RelativeScopedName < Treetop::Runtime::SyntaxNode def build(parent) n = '' n << name.text_value n << parts.text_value sn = Ast::ScopedName.new(parent, n, :relative => true) end end # RelativeScopedName end # ParseTree end # WebIDL
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
webidl-0.0.2 | lib/webidl/parse_tree/relative_scoped_name.rb |
webidl-0.0.1 | lib/webidl/parse_tree/relative_scoped_name.rb |