0f607e459c
The API is not ready for finalization, so we remove it for further development after M4. Makes dart2js's StackTrace object implement dart:core's StackTrace. Marks dart2js stack-trace tests as Fail instead of Skip. Review URL: https://codereview.chromium.org//14009004 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@21437 260f80e4-7a28-3924-810f-c04153c831b5
14 lines
488 B
Dart
14 lines
488 B
Dart
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
patch class StackTrace {
|
|
/* patch */ String get _fullStackTrace native "Stacktrace_getFullStacktrace";
|
|
|
|
/* patch */ String get _stackTrace native "Stacktrace_getStacktrace";
|
|
|
|
/* patch */ void _setupFullStackTrace()
|
|
native "Stacktrace_setupFullStacktrace";
|
|
}
|
|
|