Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- let token_names:string[] = {"identifier", "number", "keyword_function" };
- generate_token_classes();
- // ^ this unfolds into
- class Identifier: public Token{
- ...
- }
- class Number: public Token{
- ...
- }
- class KeywordFunction: public Token{
- ...
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement