| OLD | NEW |
| 1 Dart Embedder Hacking | 1 Dart Embedder Hacking |
| 2 ==== | 2 ==== |
| 3 | 3 |
| 4 ## Debugging | 4 ## Debugging |
| 5 | 5 |
| 6 Under Mojo, by default the Dart VM is built in Release mode regardless of the | 6 Under Mojo, by default the Dart VM is built in Release mode regardless of the |
| 7 mode that Mojo is built in. That is, when Mojo is built in Debug mode, the | 7 mode that Mojo is built in. That is, when Mojo is built in Debug mode, the |
| 8 Dart VM is still built in Release mode. To change this behavior while working | 8 Dart VM is still built in Release mode. To change this behavior while working |
| 9 on the embedder, pass dart_debug=true to gn to configure a Debug build of the | 9 on the embedder, pass dart_debug=true to gn to configure a Debug build of the |
| 10 Dart VM. I.e.: | 10 Dart VM. I.e.: |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 from subtle differences. Implementation status: | 51 from subtle differences. Implementation status: |
| 52 | 52 |
| 53 | 'dart:io' feature | Mojo Service | Implemented | | 53 | 'dart:io' feature | Mojo Service | Implemented | |
| 54 | ------------------ | -------------------- | ----------- | | 54 | ------------------ | -------------------- | ----------- | |
| 55 | Socket | mojo:network_service | Yes | | 55 | Socket | mojo:network_service | Yes | |
| 56 | ServerSocket | mojo:network_service | Yes | | 56 | ServerSocket | mojo:network_service | Yes | |
| 57 | DNS | mojo:network_srevice | Yes | | 57 | DNS | mojo:network_srevice | Yes | |
| 58 | SecureSocket | N/A | No | | 58 | SecureSocket | N/A | No | |
| 59 | SecureServerSocket | N/A | No | | 59 | SecureServerSocket | N/A | No | |
| 60 | Datagram | mojo:network_service | No | | 60 | Datagram | mojo:network_service | No | |
| 61 | File system | mojo:files | No | | 61 | File system | mojo:files | Yes | |
| 62 | Zlib Gzip Filter | N/A | Yes | |
| OLD | NEW |