Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Side by Side Diff: runtime/vm/exceptions.h

Issue 533483003: Cleanup throwing of the RangeError in the runtime to remove duplicated code. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #ifndef VM_EXCEPTIONS_H_ 5 #ifndef VM_EXCEPTIONS_H_
6 #define VM_EXCEPTIONS_H_ 6 #define VM_EXCEPTIONS_H_
7 7
8 #include "vm/allocation.h" 8 #include "vm/allocation.h"
9 9
10 namespace dart { 10 namespace dart {
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 kType, 65 kType,
66 kFallThrough, 66 kFallThrough,
67 kAbstractClassInstantiation, 67 kAbstractClassInstantiation,
68 kCyclicInitializationError, 68 kCyclicInitializationError,
69 }; 69 };
70 70
71 static void ThrowByType(ExceptionType type, const Array& arguments); 71 static void ThrowByType(ExceptionType type, const Array& arguments);
72 static void ThrowOOM(); 72 static void ThrowOOM();
73 static void ThrowStackOverflow(); 73 static void ThrowStackOverflow();
74 static void ThrowArgumentError(const Instance& arg); 74 static void ThrowArgumentError(const Instance& arg);
75 static void ThrowRangeError(const Instance& arg);
75 static void ThrowJavascriptCompatibilityError(const char* msg); 76 static void ThrowJavascriptCompatibilityError(const char* msg);
76 77
77 // Returns a RawInstance if the exception is successfully created, 78 // Returns a RawInstance if the exception is successfully created,
78 // otherwise returns a RawError. 79 // otherwise returns a RawError.
79 static RawObject* Create(ExceptionType type, const Array& arguments); 80 static RawObject* Create(ExceptionType type, const Array& arguments);
80 81
81 private: 82 private:
82 DISALLOW_COPY_AND_ASSIGN(Exceptions); 83 DISALLOW_COPY_AND_ASSIGN(Exceptions);
83 }; 84 };
84 85
85 } // namespace dart 86 } // namespace dart
86 87
87 #endif // VM_EXCEPTIONS_H_ 88 #endif // VM_EXCEPTIONS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698