Andreas Kling
|
f8393b80e3
LibJS: Add support for do..while statements
|
5 years ago |
Andreas Kling
|
644ff1bbfd
LibJS: Add basic support for modulo (%) in binary expressions
|
5 years ago |
Andreas Kling
|
9c8363bb5f
LibJS: Allow "for" statement without curly braces around body
|
5 years ago |
Linus Groh
|
6e5f9e20eb
LibJS: Fix logical expressions
|
5 years ago |
Linus Groh
|
a58640ce6b
LibJS: Parse binary bitwise operators
|
5 years ago |
Andreas Kling
|
0622181d1f
LibJS: Implement ConditionalExpression (ternary "?:" operator)
|
5 years ago |
Linus Groh
|
2636cac6e4
LibJS: Remove UndefinedLiteral, add undefined to global object
|
5 years ago |
Linus Groh
|
a62230770b
LibJS: Implement unary plus / minus
|
5 years ago |
Jack Karamanian
|
098f1cd0ca
LibJS: Add support for arrow functions
|
5 years ago |
Jack Karamanian
|
f90da71d28
LibJS: Add Parser save_state() and load_state() functions
|
5 years ago |
Andreas Kling
|
1923051c5b
LibJS: Lexer and parser support for "switch" statements
|
5 years ago |
Andreas Kling
|
a3d92b1210
LibJS: Implement the "instanceof" operator
|
5 years ago |
Andreas Kling
|
0593ce406b
LibJS: Implement basic support for the "new" keyword
|
5 years ago |
Andreas Kling
|
14de45296e
LibJS: Fix broken parsing of `!o.a`
|
5 years ago |
Andreas Kling
|
6c9d2cfa5e
LibJS: Handle "for" statements with empty initializer and updater
|
5 years ago |
Andreas Kling
|
9ee7142227
LibJS: Fix parsing of `if (typeof "foo" === "string")`
|
5 years ago |
Andreas Kling
|
faddf3a1db
LibJS: Implement "throw"
|
5 years ago |
Andreas Kling
|
c33d4aefc3
LibJS: Parse "try", "catch" and "finally"
|
5 years ago |
Andreas Kling
|
df524203b2
LibJS: Consume semicolon at the end of a statement
|
5 years ago |
Andreas Kling
|
fbb9e1b715
LibJS: Implement "else" parsing
|
5 years ago |
Andreas Kling
|
cccbe43056
LibJS: Use FlyString for identifiers
|
5 years ago |
Andreas Kling
|
7c48c3c8e1
LibJS: Parse "if" statements
|
5 years ago |
0xtechnobabble
|
bc002f807a
LibJS: Parse object expressions
|
5 years ago |
Andreas Kling
|
a3d2e07446
LibJS: Parse computed MemberExpressions
|
5 years ago |
Andreas Kling
|
a82f64d3d6
LibJS: Parse ArrayExpression and start implementing Array objects
|
5 years ago |
Andreas Kling
|
73d28a0551
LibJS: Prefer FunctionDeclaration if a statement begins with "function"
|
5 years ago |
Andreas Kling
|
07679e347c
LibJS: Parse FunctionExpressions
|
5 years ago |
Andreas Kling
|
ddd69e3660
LibJS: Make the AST reference-counted
|
5 years ago |
Conrad Pankoff
|
46a897b59b
LibJS: Implement typeof operator
|
5 years ago |
0xtechnobabble
|
dfbaa8e543
LibJS: Implement abstract equality and inequality
|
5 years ago |