(StarlarkThread.Frame fr, List<Statement> statements)
| 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; |
no test coverage detected