Closed fitzgen closed 5 years ago
Right now we are lumping named types and primitive types together, but it makes sense to separate them.
The <Identifier> production should always require a leading $.
<Identifier>
$
And then we should have a <WebidlPrimitiveType> production that matches "unsigned long long" etc.
<WebidlPrimitiveType>
"unsigned long long"
Fixed in #12
Right now we are lumping named types and primitive types together, but it makes sense to separate them.
The
<Identifier>
production should always require a leading$
.And then we should have a
<WebidlPrimitiveType>
production that matches"unsigned long long"
etc.