-
I run this snippet:
```python
print( ("a" + ["b"]) + ["c"] )
```
And Starlark says:
`unknown binary op: "a" + ["b", "c"]`
But it wasn't supposed to get to the value `["b", "c"]` accordin…
-
### Expected Behavior
```Starlark
def apply_resource_labels(id):
test = local("echo hello-world", echo=False) #
1. For any existing `Tiltfile` add the code snippet as shown above unde…
-
It's not documented, but it's still present.
cc @laszlocsomor
-
https://github.com/bazelbuild/starlark/blob/ce1fdb0e4eb2c85dfc549ddee4dcf55974392334/README.md?plain=1#L36-L37
The readme says:
> It is safe to execute untrusted code.
https://github.com/goo…
-
When invoking kt_compiler_deps_aspect_impl on a large enough build graph, output infos will be merged and Bazel will throw an out of memory error.
The stack trace:
```
net.starlark.java.eval.St…
-
Is it expected that symbols in the prelude autocomplete when using the vscode extension + the plain starlark binary in LSP mode?
I've tweaked the the VS code LSP args to pass `--prelude` in, and do…
-
Implement an API similar to [re.compile](https://docs.python.org/3/library/re.html#re.compile) that allows compiling programs once and then repeatedly evaluating them against different inputs.
Rele…
-
## Overview
After finishing the installation process correctly, I executed the following command:
```
kurtosis engine start
```
Then I executed the following command
```
dive bridge ibc --…
-
可以正常*build*出来二进制文件,但不论是直接`go run`或是运行二进制文件都会提示
`Failed: No file found in GOPATH`
项目并没有克隆到`/Users/joshua/go`里面
```shell
$ export GOPATH=/Users/joshua/go
$ export PATH=$GOPATH/bin:$PATH
$ ./…
-
There are a number of bzl files with functions taking default values of `[]`. Which could be a source of unexpected behaviour, as (like Python) the default value objects are created when the functio…