Chromium Code Reviews| Index: lib/src/frame.dart |
| diff --git a/lib/src/frame.dart b/lib/src/frame.dart |
| index 4077c7cba54318863a6f6799daf5bac5c5f30fcb..417da19481dc9877ef3763b8884e100793875ad1 100644 |
| --- a/lib/src/frame.dart |
| +++ b/lib/src/frame.dart |
| @@ -304,3 +304,12 @@ class Frame { |
| String toString() => '$location in $member'; |
| } |
| + |
| +import 'package:stack_trace/stack_trace.dart'; |
|
Bob Nystrom
2016/01/12 01:12:14
?
nweiz
2016/01/12 01:30:35
Done.
|
| + |
| +void main() { |
| + Chain.capture(() { |
| + // Your program goes here. |
| + }); |
| +} |
| + |