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