| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 library fuzz_support; | 5 library fuzz_support; |
| 6 | 6 |
| 7 import "dart:io"; | 7 import 'dart:async'; |
| 8 import 'dart:io'; |
| 8 | 9 |
| 9 const typeMapping = const { | 10 const typeMapping = const { |
| 10 'null': null, | 11 'null': null, |
| 11 'int': 0, | 12 'int': 0, |
| 12 'bigint': 18446744073709551617, | 13 'bigint': 18446744073709551617, |
| 13 'String': 'a', | 14 'String': 'a', |
| 14 'FileMode': FileMode.READ, | 15 'FileMode': FileMode.READ, |
| 15 'num': 0.50, | 16 'num': 0.50, |
| 16 'List<int>': const [1, 2, 3], | 17 'List<int>': const [1, 2, 3], |
| 17 'Map<String, int>': const { "a": 23 } | 18 'Map<String, int>': const { "a": 23 } |
| (...skipping 21 matching lines...) Expand all Loading... |
| 39 } | 40 } |
| 40 | 41 |
| 41 // Perform sync operation and ignore all exceptions. | 42 // Perform sync operation and ignore all exceptions. |
| 42 doItSync(Function f) { | 43 doItSync(Function f) { |
| 43 try { f(); } catch (e) {} | 44 try { f(); } catch (e) {} |
| 44 } | 45 } |
| 45 | 46 |
| 46 // Perform async operation and transform the future for the operation | 47 // Perform async operation and transform the future for the operation |
| 47 // into a future that never fails by treating errors as normal | 48 // into a future that never fails by treating errors as normal |
| 48 // completion. | 49 // completion. |
| 49 Future doItAsync(Function f) { | 50 Future doItAsync(void f()) { |
| 50 // Ignore value and errors. | 51 // Ignore value and errors. |
| 51 var completer = new Completer(); | 52 return new Future.delayed(0, f).catchError((_) {}).then((_) => true); |
| 52 var future = f(); | |
| 53 future.handleException((e) { | |
| 54 completer.complete(true); | |
| 55 return true; | |
| 56 }); | |
| 57 future.then((v) => completer.complete(true)); | |
| 58 return completer.future; | |
| 59 } | 53 } |
| OLD | NEW |