| Index: lib/compiler/implementation/js_backend/backend.dart
|
| diff --git a/lib/compiler/implementation/js_backend/backend.dart b/lib/compiler/implementation/js_backend/backend.dart
|
| index 3a7d351756a51810a42033e6713b67a44cd80d86..120440ed1aa28adfe68ad16db3742819c877ba22 100644
|
| --- a/lib/compiler/implementation/js_backend/backend.dart
|
| +++ b/lib/compiler/implementation/js_backend/backend.dart
|
| @@ -925,4 +925,19 @@ class JavaScriptBackend extends Backend {
|
| }
|
| }
|
| }
|
| +
|
| + void dumpInferredTypes() {
|
| + print("Inferred argument types:");
|
| + print("------------------------");
|
| + argumentTypes.dump();
|
| + print("");
|
| + print("Inferred return types:");
|
| + print("----------------------");
|
| + dumpReturnTypes();
|
| + print("");
|
| + print("Inferred field types:");
|
| + print("------------------------");
|
| + fieldTypes.dump();
|
| + print("");
|
| + }
|
| }
|
|
|