Index: src/runtime/runtime.cc |
diff --git a/src/runtime/runtime.cc b/src/runtime/runtime.cc |
index cf050d33698a576dd675108265687468f28d134f..115ec47e3bc57fdf2e33510e2033b082868c65c4 100644 |
--- a/src/runtime/runtime.cc |
+++ b/src/runtime/runtime.cc |
@@ -1742,23 +1742,6 @@ RUNTIME_FUNCTION(Runtime_ThrowReferenceError) { |
} |
-RUNTIME_FUNCTION(Runtime_ThrowNonMethodError) { |
- HandleScope scope(isolate); |
- DCHECK(args.length() == 0); |
- THROW_NEW_ERROR_RETURN_FAILURE( |
- isolate, NewReferenceError("non_method", HandleVector<Object>(NULL, 0))); |
-} |
- |
- |
-RUNTIME_FUNCTION(Runtime_ThrowUnsupportedSuperError) { |
- HandleScope scope(isolate); |
- DCHECK(args.length() == 0); |
- THROW_NEW_ERROR_RETURN_FAILURE( |
- isolate, |
- NewReferenceError("unsupported_super", HandleVector<Object>(NULL, 0))); |
-} |
- |
- |
RUNTIME_FUNCTION(Runtime_PromiseRejectEvent) { |
DCHECK(args.length() == 3); |
HandleScope scope(isolate); |