Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error with built-in type function when running a script via larky-runner #397

Open
mhanberry opened this issue Oct 3, 2023 · 0 comments
Assignees

Comments

@mhanberry
Copy link
Contributor

mhanberry commented Oct 3, 2023

Error with built-in type function when running a script via larky-runner

When using the larky-runner executable to interpret a larky script, attempting to use the built-in type() function results in the following error:

net.starlark.java.eval.StarlarkEvalWrapper$Exc$RuntimeEvalException: EvalException thrown during Starlark evaluation ('type' object is not callable)
Caused by: Traceback (most recent call last):
	File "com.verygood.security.larky.parser.PrependMergedStarFile@20c4d958", line 2, column 11, in <toplevel>
Error: 'type' object is not callable
	at net.starlark.java.eval.Starlark.errorf(Starlark.java:680)
	at net.starlark.java.eval.Starlark.fastcall(Starlark.java:616)
	at net.starlark.java.eval.Eval.evalCall(Eval.java:683)
	at net.starlark.java.eval.Eval.eval(Eval.java:498)
	at net.starlark.java.eval.Eval.evalCall(Eval.java:633)
	at net.starlark.java.eval.Eval.eval(Eval.java:498)
	at net.starlark.java.eval.Eval.execReturn(Eval.java:250)
	at net.starlark.java.eval.Eval.exec(Eval.java:289)
	at net.starlark.java.eval.Eval.execStatements(Eval.java:83)
	at net.starlark.java.eval.Eval.execFunctionBody(Eval.java:67)
	at net.starlark.java.eval.StarlarkFunction.fastcall(StarlarkFunction.java:188)
	at net.starlark.java.eval.Starlark.fastcall(Starlark.java:623)
	at net.starlark.java.eval.Starlark.execFileProgram(Starlark.java:909)
	at com.verygood.security.larky.parser.LarkyEvaluator.eval(LarkyEvaluator.java:141)
	at com.verygood.security.larky.parser.LarkyScript.executeStarlark(LarkyScript.java:138)
	at com.verygood.security.larky.parser.LarkyScript.executeSkylarkWithOutput(LarkyScript.java:152)
	at com.verygood.security.run.LarkyEntrypoint.execute(LarkyEntrypoint.java:135)
	at com.verygood.security.run.LarkyEntrypoint.call(LarkyEntrypoint.java:98)
	at com.verygood.security.run.LarkyEntrypoint.call(LarkyEntrypoint.java:39)
	at picocli.CommandLine.executeUserObject(CommandLine.java:2041)
	at picocli.CommandLine.access$1500(CommandLine.java:148)
	at picocli.CommandLine$RunLast.executeUserObjectOfLastSubcommandWithSameParent(CommandLine.java:2461)
	at picocli.CommandLine$RunLast.handle(CommandLine.java:2453)
	at picocli.CommandLine$RunLast.handle(CommandLine.java:2415)
	at picocli.CommandLine$AbstractParseResultHandler.execute(CommandLine.java:2273)
	at picocli.CommandLine$RunLast.execute(CommandLine.java:2417)
	at picocli.CommandLine.execute(CommandLine.java:2170)
	at com.verygood.security.run.LarkyEntrypoint.main(LarkyEntrypoint.java:92)

Note that type() works when using the interactive larky-runner prompt

Advised solution

N/A (unknown)

Testing scenarios

  1. Create a test file named test.star with the following content:
type(1)
  1. Execute the script:
larky-runner -s test.star

Expected result

A successful run with an exit code of 0

Observed result

The above error message with an exit code of 1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants