| OLD | NEW |
| (Empty) |
| 1 This is the VM Stats program built into the Dart executable. | |
| 2 | |
| 3 These files are converted into binary resources during the build, and | |
| 4 linked into the Dart executable so it is self-contained. These resources | |
| 5 are available via a built-in HTTP server, enabled with the --stats flag. | |
| 6 | |
| 7 Since dart2js requires the dart executable, the vm_stats.dart.js file is | |
| 8 not re-created with the build. Instead, it should be regenerated whenever | |
| 9 any of the dart files change, and committed with those changes. To | |
| 10 regenerate, from this directory run: | |
| 11 | |
| 12 $ ../../../out/ReleaseIA32/dart-sdk/bin/dart2js -ovmstats.dart.js \ | |
| 13 vmstats.dart | |
| OLD | NEW |