(function *valueFunction, args callArguments, tc tailCallStatus)
| 1033 | } |
| 1034 | |
| 1035 | func (i *interpreter) evaluateTailCall(function *valueFunction, args callArguments, tc tailCallStatus) (value, error) { |
| 1036 | if tc == tailCall { |
| 1037 | i.stack.tailCallTrimStack() |
| 1038 | } |
| 1039 | return function.call(i, args) |
| 1040 | } |
| 1041 | |
| 1042 | func (i *interpreter) Error(s string) error { |
| 1043 | err := makeRuntimeError(s, i.getCurrentStackTrace()) |
no test coverage detected