| OLD | NEW |
| 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef PRODUCT |
| 6 |
| 5 #include <map> | 7 #include <map> |
| 6 #include <string> | 8 #include <string> |
| 7 #include <vector> | 9 #include <vector> |
| 8 | 10 |
| 9 #include "vm/dev_fs.h" | 11 #include "vm/dev_fs.h" |
| 10 | 12 |
| 11 #include "vm/hash_table.h" | 13 #include "vm/hash_table.h" |
| 12 #include "vm/json_stream.h" | 14 #include "vm/json_stream.h" |
| 13 #include "vm/lockers.h" | 15 #include "vm/lockers.h" |
| 14 #include "vm/object.h" | 16 #include "vm/object.h" |
| 15 #include "vm/unicode.h" | 17 #include "vm/unicode.h" |
| 16 | 18 |
| 17 namespace dart { | 19 namespace dart { |
| 18 | 20 |
| 19 #ifndef PRODUCT | |
| 20 | |
| 21 static const uint8_t decode_table[256] = { | 21 static const uint8_t decode_table[256] = { |
| 22 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, | 22 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, |
| 23 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, | 23 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, |
| 24 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 62, 64, 64, 64, 63, | 24 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 62, 64, 64, 64, 63, |
| 25 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 64, 64, 64, 64, 64, 64, | 25 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 64, 64, 64, 64, 64, 64, |
| 26 64, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, | 26 64, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, |
| 27 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 64, 64, 64, 64, 64, | 27 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 64, 64, 64, 64, 64, |
| 28 64, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, | 28 64, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, |
| 29 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 64, 64, 64, 64, | 29 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 64, 64, 64, 64, |
| 30 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, | 30 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, |
| (...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 return; | 363 return; |
| 364 } | 364 } |
| 365 | 365 |
| 366 JSONObject jsobj(js); | 366 JSONObject jsobj(js); |
| 367 jsobj.AddProperty("type", "FSFile"); | 367 jsobj.AddProperty("type", "FSFile"); |
| 368 jsobj.AddPropertyBase64("fileContents", | 368 jsobj.AddPropertyBase64("fileContents", |
| 369 &((*file_contents)[0]), | 369 &((*file_contents)[0]), |
| 370 file_contents->size()); | 370 file_contents->size()); |
| 371 } | 371 } |
| 372 | 372 |
| 373 } // namespace dart |
| 374 |
| 373 #endif // !PRODUCT | 375 #endif // !PRODUCT |
| 374 | |
| 375 } // namespace dart | |
| OLD | NEW |