index
:
serenity
master
topic/trivial_docs
The Serenity Operating System 🐞
cos
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Userland
/
Libraries
/
LibJS
/
Parser.cpp
Age
Commit message (
Expand
)
Author
2021-07-20
LibJS: Disallow unqualified deletes in strict mode
davidot
2021-07-20
LibJS: Disallow multiple __proto__ keys in object expression
davidot
2021-07-20
LibJS: Disallow static methods named prototype in classes
davidot
2021-07-20
LibJS: Disallow duplicated variable declarations
davidot
2021-07-20
LibJS: Handle strict mode for functions more correctly
davidot
2021-07-20
LibJS: Be more strict about reserved and special identifiers
davidot
2021-07-20
LibJS: Be less strict about 'use strict'
davidot
2021-07-18
LibJS: Extend class 'extends' RHS expression parsing
Linus Groh
2021-07-11
LibJS: Use expected() instead of syntax_error("Expected ...")
Ali Mohammad Pur
2021-07-11
LibJS: Rework Identifier parsing to match the spec more closely
Ali Mohammad Pur
2021-07-11
LibJS: Add support for binding patterns in catch clauses
Ali Mohammad Pur
2021-07-11
LibJS: Implement parsing and evaluation for AssignmentPatterns
Ali Mohammad Pur
2021-07-11
LibJS: Allow 'name = value' in object literals as the spec does
Ali Mohammad Pur
2021-07-11
LibJS: Fix computed property ending token in binding pattern parsing
Ali Mohammad Pur
2021-07-11
LibJS: Treat default parameter values as being in function context
Ali Mohammad Pur
2021-07-10
LibJS: Parse the RegExp.prototype.hasIndices flag
Timothy Flynn
2021-07-06
LibJS: Don't hoist functions under certain circumstances
Hendi
2021-07-06
Revert "LibJS: Don't hoist functions under certain circumstances"
Linus Groh
2021-07-06
LibJS: Don't hoist functions under certain circumstances
Hendi
2021-07-06
LibJS: Fix runaway let scope when parsing for-in/of statements
Hendi
2021-07-06
LibJS: Improve function hoisting across blocks
Hendi
2021-07-06
LibJS: Remove variables from FunctionNode
Hendi
2021-07-02
LibJS: Make SuperCall a proper AST node and clean up evaluation
Andreas Kling
2021-07-02
LibJS: Allow patterns in parenthesized arrow function parameters
Ali Mohammad Pur
2021-07-02
LibJS: Allow 'yield' and 'await' as function expression names
Ali Mohammad Pur
2021-07-02
LibJS: Allow binding patterns as for in/of targets
Ali Mohammad Pur
2021-07-02
LibJS: Allow 'yield' as a variable name outside of generator functions
Ali Mohammad Pur
2021-07-02
LibJS: Parse generator functions in class expressions too
Ali Mohammad Pur
2021-06-26
AK: Undo bogus Variant::downcast() rename
Andreas Kling
2021-06-26
LibJS: Fix spelling mistake in one of the syntax error descriptions
Andreas Kling
2021-06-24
AK: Rename downcast<T> => verify_cast<T>
Andreas Kling
2021-06-23
LibJS: Correct behaviour of direct vs. indirect eval
Anonymous
2021-06-22
LibJS: Remove direct argument loading since it was buggy
Andreas Kling
2021-06-22
LibJS: Split the per-call-frame environment into lexical and variable
Andreas Kling
2021-06-21
LibJS: Rename Environment Records so they match the spec :^)
Andreas Kling
2021-06-21
LibJS: Rename Parser::m_parser_state => m_state
Andreas Kling
2021-06-19
LibJS: Restructure and fully implement BindingPatterns
Matthew Olsson
2021-06-19
LibJS: Remove bad spread check in declaration parsing
Matthew Olsson
2021-06-19
LibJS: Disallow 'yield' identifier initializer in GeneratorFunctions
Matthew Olsson
2021-06-17
LibJS: Throw a syntax error when an identifier is a reserved word
Idan Horowitz
2021-06-14
LibJS: Correctly parse yield-from expressions
Ali Mohammad Pur
2021-06-14
LibJS: Parse generator functions in object literals
Ali Mohammad Pur
2021-06-14
LibJS: Track which Identifier nodes refer to function arguments
Andreas Kling
2021-06-13
LibJS: Use the new is_ascii_foo() helpers from AK
Andreas Kling
2021-06-11
LibJS: Parse only AssignmentExpressions in ComputedPropertyNames
Gal Horowitz
2021-06-11
LibJS: Use an enum class instead of 'bool is_generator'
Ali Mohammad Pur
2021-06-11
LibJS: Fix two accidentally incorrect ScriptFunction constructions
Linus Groh
2021-06-11
LibJS: Implement generator functions (only in bytecode mode)
Ali Mohammad Pur
2021-06-02
AK+LibWasm+LibJS: Disallow Variant.has() on types that aren't contained
Ali Mohammad Pur
2021-05-30
LibJS: Make missing variable decls in for..in/of a syntax error
Ali Mohammad Pur
[next]