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

Unified Diff: test/codegen/expect/corelib/reg_exp5_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
Index: test/codegen/expect/corelib/reg_exp5_test.js
diff --git a/test/codegen/expect/corelib/reg_exp5_test.js b/test/codegen/expect/corelib/reg_exp5_test.js
new file mode 100644
index 0000000000000000000000000000000000000000..70e3fcf31c6469d08534e721eafdf08b36c2e036
--- /dev/null
+++ b/test/codegen/expect/corelib/reg_exp5_test.js
@@ -0,0 +1,32 @@
+dart_library.library('corelib/reg_exp5_test', null, /* Imports */[
+ 'dart_sdk',
+ 'expect'
+], function load__reg_exp5_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 reg_exp5_test = Object.create(null);
+ let VoidTodynamic = () => (VoidTodynamic = dart.constFn(dart.definiteFunctionType(dart.dynamic, [])))();
+ reg_exp5_test.main = function() {
+ let str = "";
+ try {
+ let ex = core.RegExp.new(str);
+ } catch (e) {
+ if (!core.ArgumentError.is(e)) {
+ expect$.Expect.fail(dart.str`Expected: ArgumentError got: ${e}`);
+ }
+ }
+
+ expect$.Expect.isFalse(core.RegExp.new("^\\w+$").hasMatch(str));
+ let fm = core.RegExp.new("^\\w+$").firstMatch(str);
+ expect$.Expect.equals(null, fm);
+ let am = core.RegExp.new("^\\w+$").allMatches(str);
+ expect$.Expect.isFalse(am[dartx.iterator].moveNext());
+ expect$.Expect.equals(null, core.RegExp.new("^\\w+$").stringMatch(str));
+ };
+ dart.fn(reg_exp5_test.main, VoidTodynamic());
+ // Exports:
+ exports.reg_exp5_test = reg_exp5_test;
+});
« no previous file with comments | « test/codegen/expect/corelib/reg_exp4_test.js ('k') | test/codegen/expect/corelib/reg_exp_all_matches_test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698