aboutsummaryrefslogtreecommitdiff
path: root/starlark/testdata
AgeCommit message (Expand)Author
2021-01-25starlark: fix bug in int(string, base=int) (#344)alandonovan
2021-01-22starlark: report "uninitialized cell" errors gracefully (#341)alandonovan
2021-01-22spec: remove more stale implementation notes (#342)alandonovan
2021-01-21resolver: make -nesteddef and -lambda always on (#328)alandonovan
2020-12-10starlark: add AsInt helper function for unpacking values to Go ints (#329)alandonovan
2020-12-02starlark: add parameter to bench_xyz(b) benchmark functions (#323)alandonovan
2020-11-13starlarkjson: sort dict keys (#316)alandonovan
2020-11-13starlark: disallow keyword argument after *args (#317)alandonovan
2020-11-11starlark: disallow None < None comparisons (#314)alandonovan
2020-11-11starlark: bring floating-point into spec compliance (#313)alandonovan
2020-10-06starlark: fix float % float bug (#308)alandonovan
2020-09-29fix: add special case error when a parameter/index overflows int (#305)tdakkota
2020-07-21starlark: permit assigments to () and [] (#294)alandonovan
2020-06-19starlark: fix tests for 386 (#283)alandonovan
2020-06-17int: reduce allocation by representing small ints as pointers (#280)alandonovan
2020-06-15syntax: permit \" and \' escapes in both "..." and '...' literals (#279)alandonovan
2020-06-11starlarkjson: a standard JSON module for Starlark (#179)alandonovan
2020-03-26syntax: strict string escapes (#265)alandonovan
2020-03-05syntax: permit trailing commas in all function defs and calls (#263)alandonovan
2019-05-28starlark: add a fail function (#210)alandonovan
2019-05-14hash: allow only strings, and use same algorithm as Starlark-in-Java (#198)alandonovan
2019-05-03starlark: improve error message from UnpackArgs (#194)alandonovan
2019-04-03resolve: load statements now create local bindings (#178)alandonovan
2019-04-01starlark: make dir return a sorted list (#182)alandonovan
2019-03-18starlark: add spell checking to load statement (#177)alandonovan
2019-03-12starlark: report name of failing function (#174)alandonovan
2019-03-08starlark: capture free variables by reference (#172)alandonovan
2019-02-24Small/big int representation for starlark Int (#155)Edward McFarlane
2019-02-19starlark: fix broken benchmark (needed -nesteddef) (#154)alandonovan
2019-02-15Support required keyword-only parameters (#151)alandonovan
2019-02-13starlark: fix bug: ''.splitlines() is special case (#148)alandonovan
2019-02-07starlark: make built-ins require True/False for bool params (#141)alandonovan
2019-02-06resolve: report likely identifier misspellings (#138)alandonovan
2019-02-04starlark: add simple check for misspelled attributesAlan Donovan
2019-01-30starlark: dict(None) and dict.update(None) are errors (#129)alandonovan
2019-01-30resolve: enable bitwise (& | ~ ^ << >>) operators always (#123)Alan Donovan
2019-01-23starlark: permit list.pop(i) for -n <= i < 0 (#126)alandonovan
2019-01-23starlark: add test case documenting a limitation of -recursion=0 (#99)alandonovan
2019-01-23resolve: disallow augmented assignments at toplevel (#125)alandonovan
2019-01-16starlark: correctly calculate len when slicing an empty range (#117)Josh Bleecher Snyder
2019-01-15starlark: reject double-signs and misplaced signs in int (#112)Josh Bleecher Snyder
2019-01-15starlark: treat {+1} in format string as key not number (#115)alandonovan
2019-01-09starlark: fix parsing of int('0Oxa', 8) (#109)alandonovan
2019-01-04starlarkstruct: add 'module' type, and use it for assert module (#91)alandonovan
2019-01-02Merge pull request #77 from google/optionsJay Conrod
2019-01-01starlark: check that interpolation consumes sole non-tuple argument (#84)Josh Bleecher Snyder
2018-12-18starlark: permit if/for/while at toplevel if -globalreassignAlan Donovan
2018-12-14resolve: statically reject duplicate keyword args in a call (#72)alandonovan
2018-12-13make break and continue work with while (#71)Alessandro Arzilli
2018-12-12starlark: check for duplicate kwarg keys in dict, dict.update (#63)Josh Bleecher Snyder