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

Unified Diff: test/codegen/expect/language/throw3_test.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/codegen/expect/language/throw2_test.js ('k') | test/codegen/expect/language/throw4_test.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen/expect/language/throw3_test.js
diff --git a/test/codegen/expect/language/throw3_test.js b/test/codegen/expect/language/throw3_test.js
new file mode 100644
index 0000000000000000000000000000000000000000..865bf9a7d292961f4a2663c8c7869227ea3c296e
--- /dev/null
+++ b/test/codegen/expect/language/throw3_test.js
@@ -0,0 +1,82 @@
+dart_library.library('language/throw3_test', null, /* Imports */[
+ 'dart_sdk',
+ 'expect'
+], function load__throw3_test(exports, dart_sdk, expect) {
+ 'use strict';
+ const core = dart_sdk.core;
+ const dart = dart_sdk.dart;
+ const dartx = dart_sdk.dartx;
+ const expect$ = expect.expect;
+ const throw3_test = Object.create(null);
+ let VoidTodynamic = () => (VoidTodynamic = dart.constFn(dart.definiteFunctionType(dart.dynamic, [])))();
+ throw3_test.MyException = class MyException extends core.Object {
+ new(message) {
+ if (message === void 0) message = "";
+ this.message_ = message;
+ }
+ };
+ dart.setSignature(throw3_test.MyException, {
+ constructors: () => ({new: dart.definiteFunctionType(throw3_test.MyException, [], [core.String])})
+ });
+ throw3_test.Helper = class Helper extends core.Object {
+ static f1(i) {
+ try {
+ let j = null;
+ i = 100;
+ i = throw3_test.Helper.func();
+ i = 200;
+ } catch (exception) {
+ if (throw3_test.MyException.is(exception)) {
+ i = 50;
+ core.print(exception.message_);
+ } else
+ throw exception;
+ }
+ finally {
+ i = dart.notNull(i) + 800;
+ }
+ return i;
+ }
+ static func() {
+ try {
+ let i = 0;
+ while (i < 10) {
+ i++;
+ }
+ if (i > 0) {
+ dart.throw(new throw3_test.MyException("Test for exception being thrown"));
+ }
+ } catch (ex) {
+ if (throw3_test.MyException.is(ex)) {
+ core.print(ex.message_);
+ throw ex;
+ } else
+ throw ex;
+ }
+
+ return 10;
+ }
+ };
+ dart.setSignature(throw3_test.Helper, {
+ statics: () => ({
+ f1: dart.definiteFunctionType(core.int, [core.int]),
+ func: dart.definiteFunctionType(core.int, [])
+ }),
+ names: ['f1', 'func']
+ });
+ throw3_test.Throw3Test = class Throw3Test extends core.Object {
+ static testMain() {
+ expect$.Expect.equals(850, throw3_test.Helper.f1(1));
+ }
+ };
+ dart.setSignature(throw3_test.Throw3Test, {
+ statics: () => ({testMain: dart.definiteFunctionType(dart.dynamic, [])}),
+ names: ['testMain']
+ });
+ throw3_test.main = function() {
+ throw3_test.Throw3Test.testMain();
+ };
+ dart.fn(throw3_test.main, VoidTodynamic());
+ // Exports:
+ exports.throw3_test = throw3_test;
+});
« no previous file with comments | « test/codegen/expect/language/throw2_test.js ('k') | test/codegen/expect/language/throw4_test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698