blob: 4e43fa0b48c6c462fa663f758fc30bc2faf18c3b [file] [log] [blame]
// Copyright (c) 2022, 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.
@pragma("wasm:import", "dart2wasm.getCurrentStackTrace")
external String _getCurrentStackTrace();
@patch
class StackTrace {
@patch
@pragma("wasm:entry-point")
static StackTrace get current {
return _StringStackTrace(_getCurrentStackTrace());
}
}