aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/syntax/Parser.java
Commit message (Expand)AuthorAge
* Cleanup in the parserGravatar Laurent Le Brun2016-10-26
* Refactoring for LoadStatementGravatar Laurent Le Brun2016-10-13
* Automated cleanupGravatar Laurent Le Brun2016-10-12
* Improve error message when 'del' keyword is usedGravatar Laurent Le Brun2016-10-11
* Remove support for "Python" parsing mode.Gravatar Laurent Le Brun2016-10-07
* Index and slice calls are implemented as separate AST nodes rather than specialGravatar Vladimir Moskva2016-09-15
* Move SkylarkImport from LoadStatement to BuildFileASTGravatar Miguel Alcon Pinto2016-08-22
* Remove static checks from the parser.Gravatar Laurent Le Brun2016-08-04
* Preliminary cleanup for removing Blaze-specific code from the environmentGravatar Laurent Le Brun2016-08-03
* Fix private symbols, clean up load parsingGravatar Jon Brandvein2016-07-29
* Add support for more augmented-assignment operators.Gravatar Googler2016-06-03
* Add error message for skylark for-else statement, and fix error message for s...Gravatar Yue Gan2016-04-07
* Remove syntactic sugar when assigning to a dict item.Gravatar Laurent Le Brun2016-01-07
* Add the source location of the import string to the LoadStatement AST node, f...Gravatar John Field2016-01-04
* Enable label-based Skylark loading. In particular, such labels may reference ...Gravatar John Field2015-12-22
* Skylark: Slice operations now accept a step argument.Gravatar Florian Weikert2015-12-17
* Use Bazel Preconditions variant which avoids varargs array creationGravatar Mark Schaller2015-12-10
* Fix location for Break and Continue AST nodes.Gravatar Laurent Le Brun2015-10-27
* Fixed wrong error message when using class definitions in Skylark / BUILD files.Gravatar Florian Weikert2015-10-16
* Rationalize copyright headersGravatar Damien Martin-Guillerez2015-09-25
* Open source some skylark tests.Gravatar Han-Wen Nienhuys2015-09-22
* Skylark: Unified ListComprehension and DictComprehension.Gravatar Florian Weikert2015-09-21
* Allow construct "a, = [1]" in parser.Gravatar Laurent Le Brun2015-09-21
* Remove support for the deprecated include() statement in order to be able to ...Gravatar Lukacs Berki2015-09-21
* Rollback of commit 4e5037520e3067f9d8784e1c59f9545b96111cd4.Gravatar Lukacs Berki2015-09-17
* Remove support for the deprecated include() statement.Gravatar Lukacs Berki2015-09-17
* Parse the label syntax "@//a:b" so that eventually we can make that the synta...Gravatar Lukacs Berki2015-09-15
* Remove dead code, set private visibilityGravatar Laurent Le Brun2015-09-14
* Allow tuples inside square brackets (for list/dict indexing).Gravatar Laurent Le Brun2015-09-11
* LoadStatement: Keep the location of the path argument.Gravatar Laurent Le Brun2015-09-11
* Fix bug in the parser when a block was silently skipped.Gravatar Laurent Le Brun2015-09-11
* Keep function parameters in the AST.Gravatar Laurent Le Brun2015-09-04
* Fix a bug in SyntaxTreeVisitor to handle return statements.Gravatar Laurent Le Brun2015-09-03
* Add profiling for Skylark lexer, parser, user- and built-in functions.Gravatar Googler2015-08-28
* Introduce '|' operator for set union.Gravatar Laurent Le Brun2015-08-25
* Allow return without expression, AST-equivalent to return None.Gravatar Googler2015-08-11
* Skylark: load() allows the loading of symbols via an alias.Gravatar Florian Weikert2015-07-27
* Renamed Ident to Identifier, added some helper methods and refactored two met...Gravatar Florian Weikert2015-07-23
* Invalid double slashes in load statements are now also discovered in BUILD modeGravatar Florian Weikert2015-07-10
* Make globs work in remote repositories.Gravatar Lukacs Berki2015-07-08
* Rollback of accidentally submitted change.Gravatar Lukacs Berki2015-07-07
* Make globs work in remote repositories.Gravatar Lukacs Berki2015-07-07
* Update parser error message.Gravatar Laurent Le Brun2015-06-30
* Fix NullPointerException in parser.Gravatar Laurent Le Brun2015-06-16
* Skylark: Forbid break/continue in BUILD files.Gravatar Laurent Le Brun2015-06-16
* Skylark: First argument of load() may no longer start with two slashes ("//")Gravatar Florian Weikert2015-06-15
* Remove Path from Location, ParserInputSource and bunch of other low-level cla...Gravatar Lukacs Berki2015-06-12
* Skylark: implemented 'break' and 'continue'Gravatar Florian Weikert2015-06-10
* Parser cleanup: Introduce an enum instead of the booleansGravatar Laurent Le Brun2015-05-28
* Forbid **kwargs and *args in BUILD files.Gravatar Laurent Le Brun2015-05-27