mass
mass copied to clipboard
Add support for multiline comments
Right now we only support single line comments with //. Would be nice to add multiline comment support with /* foo */.
Ideally tokenizer should also support nested multiline comments as in /* /* foo */ */. For the implementation it should be sufficient to have a single integer tracking the depth of nesting.