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

Unified Diff: test/mjsunit/harmony/typesystem/object-types.js

Issue 1817093002: Add parsing for object types (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@types-1810943002-tuple
Patch Set: Created 4 years, 9 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/mjsunit/harmony/typesystem/object-types.js
diff --git a/test/mjsunit/harmony/typesystem/tuple-types.js b/test/mjsunit/harmony/typesystem/object-types.js
similarity index 78%
copy from test/mjsunit/harmony/typesystem/tuple-types.js
copy to test/mjsunit/harmony/typesystem/object-types.js
index 8a815cb4983f44c76cbe343624f9965995c7adcb..2062e724acad30fdbe772b684b80214906d0c309 100644
--- a/test/mjsunit/harmony/typesystem/tuple-types.js
+++ b/test/mjsunit/harmony/typesystem/object-types.js
@@ -14,9 +14,9 @@ load("test/mjsunit/harmony/typesystem/typegen.js");
let test_size = 1000;
-(function TestTupleTypes(size) {
+(function TestObjectTypes(size) {
Test(size, [
- new TestGen(4, ValidTupleTypes, [CheckValid]),
- new TestGen(1, InvalidTupleTypes, [CheckInvalid])
+ new TestGen(4, ValidObjectTypes, [CheckValid]),
+ new TestGen(1, InvalidObjectTypes, [CheckInvalid])
]);
})(test_size);

Powered by Google App Engine
This is Rietveld 408576698