Sha256: 5fff008b4e9b82e2d9729d06499b6d6bb2d70a239feb3d05ac9d20905e31b6d9
Contents?: true
Size: 410 Bytes
Versions: 3
Compression:
Stored size: 410 Bytes
Contents
module WebIDL module ParseTree class Type < Treetop::Runtime::SyntaxNode def build(parent) result = type.build(parent) if result.kind_of? Ast::ScopedName result = Ast::Type.new parent, result.name # or qualified_name? end if suffix.any? suffix.apply(result) end result end end # Type end # ParseTree end # WebIDL
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
webidl-0.1.3 | lib/webidl/parse_tree/type.rb |
webidl-0.1.2 | lib/webidl/parse_tree/type.rb |
webidl-0.1.1 | lib/webidl/parse_tree/type.rb |