aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/parser
Commit message (Expand)AuthorAgeFilesLines
* Correctly create methods for functions in object literalsLars Knoll2018-08-313-2/+5
* Fix the class name property of default exported classesSimon Hausmann2018-08-161-0/+8
* Fix the name of anonymous generators and function declarationsSimon Hausmann2018-08-151-5/+12
* Fix usage of const in for declarationsSimon Hausmann2018-08-152-0/+3
* Cleanup RegExpObjectLars Knoll2018-08-152-1/+3
* Simplify ES module body handlingSimon Hausmann2018-08-144-99/+16
* Fix module dependency handlingSimon Hausmann2018-08-143-26/+13
* Fix multi variable module import listsSimon Hausmann2018-08-141-1/+1
* Fix support for default exports in modulesSimon Hausmann2018-08-103-12/+31
* Enable unicode regular expressionsLars Knoll2018-08-102-1/+3
* Add initial basic support for ES6 modulesSimon Hausmann2018-08-092-1/+31
* Fix grammar for ES modulesLars Knoll2018-08-023-5/+7
* Fix typoLars Knoll2018-08-011-4/+4
* Smaller grammar cleanupLars Knoll2018-08-011-16/+2
* Simplify parsing of pragma directivesLars Knoll2018-08-015-96/+12
* Build AST nodes when parsing ES6 modulesSimon Hausmann2018-07-315-1/+891
* Merge remote-tracking branch 'origin/5.11' into devQt Forward Merge Bot2018-07-162-1/+23
|\
| * Fix conversion of numeric literals in the AST to stringsSimon Hausmann2018-07-132-1/+23
* | Fix naming of classes in class expressionsLars Knoll2018-07-033-1/+46
* | Properly distinguish between class expressions and declarationsLars Knoll2018-06-265-2/+49
* | Fix string memory leak in JavaScript ASTSimon Hausmann2018-06-254-16/+23
* | Fix const expressions containing destructuring patternsLars Knoll2018-06-211-1/+0
* | Fix array destructuring nested in a rest elementLars Knoll2018-06-211-18/+18
* | Fix more issues with destructuringLars Knoll2018-06-212-25/+23
* | Fix handling of elisions in destructuring expressionsLars Knoll2018-06-213-14/+13
* | Fix more test failures for destructuring expressionsLars Knoll2018-06-211-3/+6
* | Correctly set the name of anonymous functions in most casesLars Knoll2018-06-211-0/+6
* | Allow a trailing comma in parameter listsLars Knoll2018-06-211-8/+19
* | The first branch in a ( ? : ) operator can always include the in keywordLars Knoll2018-05-281-1/+1
* | Fix multi line string literals using backquotesLars Knoll2018-05-261-1/+1
* | Unify AST for the different 'for' statementsLars Knoll2018-05-115-46/+5
* | Improve for-in and for-of supportLars Knoll2018-05-112-14/+25
* | Unify ForeachStatement and LocalForeachStatement in the ASTLars Knoll2018-05-115-52/+18
* | Support destructuring inside catch()Lars Knoll2018-05-113-6/+21
* | Add some basic support for for-of loopsLars Knoll2018-05-094-13/+35
* | Add Generator supportLars Knoll2018-05-031-7/+6
* | Cosmetic cleanupLars Knoll2018-05-031-5/+3
* | Fix handling of yield expression in the parserLars Knoll2018-05-031-6/+18
* | QmlJS: Do not use realloc for QStringRefOrgad Shaneh2018-05-031-3/+2
* | Fix some parse errorsLars Knoll2018-05-031-3/+3
* | Make qqmljs.g accessible in Qt CreatorSimon Hausmann2018-05-021-0/+2
* | Correctly set source location when converting BindingPatternsLars Knoll2018-05-022-1/+2
* | Fixup bug in the parser when generating ObjectLiteralsLars Knoll2018-05-021-2/+5
* | Correctly iterate over the base of a TaggedTemplateLars Knoll2018-05-021-0/+1
* | Fix destructuring of arrow function parametersLars Knoll2018-05-023-31/+54
* | Properly set names of most anonymous functionsLars Knoll2018-05-023-1/+54
* | Support destructuring assignmentsLars Knoll2018-04-274-25/+234
* | Add support for destructuring variable declarationsLars Knoll2018-04-271-1/+0
* | Use a PatternElement for VariableDeclarationsLars Knoll2018-04-275-68/+40
* | Rework the AST for Literals and destructuring expressionsLars Knoll2018-04-275-567/+326