ouroboros-project / ouroboros

Sistema de integração entre C++ e várias linguagens de script.
zlib License
2 stars 0 forks source link

[opwig] Parser cares about declare-specifier order #17

Open Rewasvat opened 10 years ago

Rewasvat commented 10 years ago

Things like

void virtual foo();
int typedef foo;

Are not accepted by the parser.

Problem is that it can't recognize type identifiers, so it cannot know when the decl-specifiers end.

We think.