Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 >>> | |
| 2 import 'dart:async'; /* soup */ import 'dart:io'; | |
| 3 | |
| 4 void main() { | |
| 5 print('hi'); | |
| 6 } | |
| 7 <<< | |
| 8 import 'dart:async'; | |
| 9 /* soup */ | |
|
pquitslund
2015/06/10 17:01:50
Out of curiosity, how does this format?
import 'd
Bob Nystrom
2015/06/10 17:15:15
Yeah, it leaves that alone. The check for this cor
| |
| 10 import 'dart:io'; | |
| 11 | |
| 12 void main() { | |
| 13 print('hi'); | |
| 14 } | |
| OLD | NEW |