blob: 8401fafcb4e0bac55ac33ce3e31581833f53d64b [file] [log] [blame]
// @dart = 2.9
library test;
import 'dart:math' as math;
class Frame {
String location = '';
}
class Trace {
List<Frame> frames = [];
}
main() {}