Fix Windows build

BUG=

Review URL: https://codereview.chromium.org/2342303003 .
This commit is contained in:
Matthias Hausner 2016-09-16 11:16:50 -07:00
parent 772c93ccf2
commit be003d70f2

View file

@ -770,7 +770,7 @@ DART_EXPORT bool Dart_IsUnhandledExceptionError(Dart_Handle object) {
DART_EXPORT bool Dart_IsCompilationError(Dart_Handle object) {
if (Dart_IsUnhandledExceptionError(object)) {
if (::Dart_IsUnhandledExceptionError(object)) {
DARTSCOPE(Thread::Current());
const UnhandledException& error =
UnhandledException::Cast(Object::Handle(Z, Api::UnwrapHandle(object)));