aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/syntax
Commit message (Expand)AuthorAge
* Improve documentation in MethodLibrary, add examples for builtins.Gravatar laurentlb2017-07-21
* Skylark documentation: Replace "set" and "List" plain-text return types with ...Gravatar fwe2017-07-21
* Use double-quotes instead of single-quotes for consistency.Gravatar laurentlb2017-07-20
* Update documentation of `dict`, mention it's mutable.Gravatar laurentlb2017-07-20
* Mark PACKAGE_NAME and REPOSITORY_NAME as deprecated.Gravatar laurentlb2017-07-19
* Clean up a few Skylark-Skyframe structuresGravatar brandjon2017-07-19
* Make the @Option annotation depend on the java version of the tagging enums.Gravatar ccalvarin2017-07-18
* Doc typoGravatar brandjon2017-07-17
* Clean up string representations for unknown objectsGravatar vladmos2017-07-17
* Fix crash when unioning depsets with different ordersGravatar brandjon2017-07-14
* New flag --incompatible_string_is_not_iterable to forbid iteration over strings.Gravatar laurentlb2017-07-13
* Automated rollback of commit 0d2aa6369b09940d584b544fb10796387e0fafa0.Gravatar brandjon2017-07-12
* Misc cleanups of syntax dirGravatar brandjon2017-07-12
* Misc cleanups of AST node APIGravatar brandjon2017-07-12
* Clean up string representations for unknown objectsGravatar vladmos2017-07-12
* Add register_toolchains function to the WORKSPACE for registering toolchains ...Gravatar John Cater2017-07-11
* Make some objects SkylarkValuesGravatar vladmos2017-07-11
* Fold OptionUsageRestrictions into OptionDocumentationCategory and OptionMetad...Gravatar ccalvarin2017-07-11
* Make SkylarkValue instances mutable by defaultGravatar vladmos2017-07-11
* Improve error message when calling a builtin function with wrong typeGravatar laurentlb2017-07-07
* Clean up string representations for select valuesGravatar vladmos2017-07-07
* Clean up string representations for functionsGravatar vladmos2017-07-07
* Remove showName argument in FunctionSignature, it was always true.Gravatar laurentlb2017-07-07
* Prohibit multiple load() statements from appearing on the same lineGravatar brandjon2017-07-07
* Fix SkylarkDict.castSkylarkDictOrNoneToDict to return a Map.Gravatar jcater2017-07-06
* Require LValues to have at least one variable.Gravatar laurentlb2017-07-06
* Clean up string representations for labelsGravatar vladmos2017-07-05
* Make 'load' a keywordGravatar laurentlb2017-07-05
* Forbid tabs for indentationGravatar laurentlb2017-07-05
* New flag `--incompatible_checked_arithmetic` to use checked arithmetics.Gravatar laurentlb2017-07-05
* Introduce --incompatible_new_actions_api flag.Gravatar dslomov2017-07-05
* Migrate tests to ctx.actions.run/run_shell.Gravatar dslomov2017-07-05
* Refactor PrinterGravatar vladmos2017-07-03
* Automated conversion to Java 8Gravatar laurentlb2017-06-30
* Lambda cleanupGravatar laurentlb2017-06-29
* Update the --incompatible_ flag requirements to use the metadata tag.Gravatar ccalvarin2017-06-28
* Add a pretty printer for Skylark ASTsGravatar brandjon2017-06-28
* Add the default category and tag to all options.Gravatar ccalvarin2017-06-28
* Add more helpers to ParserGravatar brandjon2017-06-28
* Turn unary minus into a proper AST nodeGravatar brandjon2017-06-28
* Fix the name of a flag in an error messageGravatar dmarting2017-06-27
* Forbid octal sequences greater than \377 (0xff) in strings.Gravatar laurentlb2017-06-26
* Update --incompatible_* error messagesGravatar brandjon2017-06-26
* Forbid 'in' operator on depset with --incompatible_depset_is_not_iterableGravatar laurentlb2017-06-26
* Forbid duplicate keys in dictionary literalsGravatar laurentlb2017-06-26
* Make len(depset()) fail when --incompatible_depset_is_not_iterable is setGravatar laurentlb2017-06-26
* Introduce --incompatible_depset_is_not_iterableGravatar laurentlb2017-06-21
* Make equality, comparison and 'in' operators not associative.Gravatar laurentlb2017-06-19
* Require parentheses around tuple in list comprehension filtering.Gravatar laurentlb2017-06-19
* Add support for the '0o' octal prefix for integers.Gravatar laurentlb2017-06-16