Age | Commit message (Expand) | Author |
2020-10-26 | LibJS: Add message string to Token | Linus Groh |
2020-10-24 | LibJS: Support LegacyOctalEscapeSequence in string literals | Linus Groh |
2020-10-22 | LibJS: Support all line terminators (LF, CR, LS, PS) | Linus Groh |
2020-10-05 | LibJS: Implement logical assignment operators (&&=, ||=, ??=) | Linus Groh |
2020-10-04 | LibJS: Unify syntax highlighting | Linus Groh |
2020-08-21 | LibJS: Parser refactored to use constexpr precedence table | Muhammad Zahalqa |
2020-06-07 | LibJS: Add BigInt | Linus Groh |
2020-06-07 | LibJS: Lex and parse regex literals, add RegExp objects | Matthew Olsson |
2020-05-18 | LibJS: Handle hex and unicode escape sequences in string literals | Matthew Olsson |
2020-05-12 | LibJS: Add missing keywords/tokens | Linus Groh |
2020-05-05 | LibJS: Implement exponentiation assignment operator (**=) | Linus Groh |
2020-05-05 | LibJS: Implement bitwise assignment operators (&=, |=, ^=) | Linus Groh |
2020-05-04 | LibJS: Add template literals | mattco98 |
2020-05-01 | LibJS: Implement (no-op) debugger statement | Linus Groh |
2020-04-27 | LibJS: Add spreading in array literals | mattco98 |
2020-04-24 | LibJS: Add TokenType::TemplateLiteral | Linus Groh |
2020-04-18 | LibJS: Allow reserved words as keys in object expressions. | Stephan Unverwerth |
2020-04-13 | LibJS: Parse "this" as ThisExpression | Stephan Unverwerth |
2020-04-05 | LibJS: Plumb line and column information through Lexer / Parser | Brian Gianforcaro |
2020-04-05 | LibJS: Add support for "continue" inside "for" statements :^) | Andreas Kling |
2020-04-03 | LibJS: Remove UndefinedLiteral, add undefined to global object | Linus Groh |
2020-03-30 | LibJS: Add support for arrow functions | Jack Karamanian |
2020-03-30 | LibJS: Use some macro magic to avoid duplicating all the token types | Andreas Kling |
2020-03-29 | LibJS: Lexer and parser support for "switch" statements | Andreas Kling |
2020-03-24 | LibJS: Implement "throw" | Andreas Kling |
2020-03-21 | LibJS: Parse object expressions | 0xtechnobabble |
2020-03-16 | LibJS: Implement null and undefined literals | 0xtechnobabble |
2020-03-14 | LibJS: Lex single quote strings, escaped chars and unterminated strings | Stephan Unverwerth |
2020-03-14 | LibJS: Add operator precedence parsing | Stephan Unverwerth |
2020-03-12 | LibJS: Implement for statement | Conrad Pankoff |
2020-03-12 | LibJS: Parse === and !== binary operators | Conrad Pankoff |
2020-03-12 | LibJS: Implement <= and >= binary operators | Conrad Pankoff |
2020-03-12 | LibJS: Add Javascript lexer and parser | Stephan Unverwerth |