Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1178)

Side by Side Diff: test/codegen/expect/language/try_catch_syntax_test_none_multi.js

Issue 2128353002: Check in codegen test expectations. (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 dart_library.library('language/try_catch_syntax_test_none_multi', null, /* Impor ts */[
2 'dart_sdk'
3 ], function load__try_catch_syntax_test_none_multi(exports, dart_sdk) {
4 'use strict';
5 const core = dart_sdk.core;
6 const dart = dart_sdk.dart;
7 const dartx = dart_sdk.dartx;
8 const try_catch_syntax_test_none_multi = Object.create(null);
9 let VoidTodynamic = () => (VoidTodynamic = dart.constFn(dart.definiteFunctionT ype(dart.dynamic, [])))();
10 try_catch_syntax_test_none_multi.main = function() {
11 try_catch_syntax_test_none_multi.testMissingCatch();
12 try_catch_syntax_test_none_multi.testMissingTry();
13 try_catch_syntax_test_none_multi.testDuplicateCatchVariable();
14 try_catch_syntax_test_none_multi.testIllegalFinally();
15 try_catch_syntax_test_none_multi.testIllegalCatch();
16 try_catch_syntax_test_none_multi.testIllegalRethrow();
17 };
18 dart.fn(try_catch_syntax_test_none_multi.main, VoidTodynamic());
19 try_catch_syntax_test_none_multi.testMissingCatch = function() {
20 };
21 dart.fn(try_catch_syntax_test_none_multi.testMissingCatch, VoidTodynamic());
22 try_catch_syntax_test_none_multi.testMissingTry = function() {
23 };
24 dart.fn(try_catch_syntax_test_none_multi.testMissingTry, VoidTodynamic());
25 try_catch_syntax_test_none_multi.testDuplicateCatchVariable = function() {
26 };
27 dart.fn(try_catch_syntax_test_none_multi.testDuplicateCatchVariable, VoidTodyn amic());
28 try_catch_syntax_test_none_multi.testIllegalFinally = function() {
29 };
30 dart.fn(try_catch_syntax_test_none_multi.testIllegalFinally, VoidTodynamic());
31 try_catch_syntax_test_none_multi.testIllegalCatch = function() {
32 };
33 dart.fn(try_catch_syntax_test_none_multi.testIllegalCatch, VoidTodynamic());
34 try_catch_syntax_test_none_multi.testIllegalRethrow = function() {
35 };
36 dart.fn(try_catch_syntax_test_none_multi.testIllegalRethrow, VoidTodynamic());
37 // Exports:
38 exports.try_catch_syntax_test_none_multi = try_catch_syntax_test_none_multi;
39 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698