MCPcopy Index your code
hub / github.com/bazelbuild/bazel / execFunctionBody

Method execFunctionBody

src/main/java/net/starlark/java/eval/Eval.java:63–68  ·  view source on GitHub ↗
(StarlarkThread.Frame fr, List<Statement> statements)

Source from the content-addressed store, hash-verified

61
62 // Called from StarlarkFunction.fastcall.
63 static Object execFunctionBody(StarlarkThread.Frame fr, List<Statement> statements)
64 throws EvalException, InterruptedException {
65 fr.thread.checkInterrupt();
66 execStatements(fr, statements, /* indented= */ false);
67 return fr.result;
68 }
69
70 private static StarlarkFunction fn(StarlarkThread.Frame fr) {
71 return (StarlarkFunction) fr.fn;

Callers 1

callMethod · 0.95

Calls 2

execStatementsMethod · 0.95
checkInterruptMethod · 0.80

Tested by

no test coverage detected