Changeset 187335 in webkit
- Timestamp:
- Jul 24, 2015, 1:48:44 AM (11 years ago)
- Location:
- branches/safari-601.1-branch
- Files:
-
- 12 edited
-
LayoutTests/TestExpectations (modified) (1 diff)
-
LayoutTests/js/script-tests/arrowfunction-asparamter-1.js (modified) (1 diff)
-
LayoutTests/js/script-tests/arrowfunction-asparamter-2.js (modified) (1 diff)
-
LayoutTests/js/script-tests/arrowfunction-associativity-1.js (modified) (1 diff)
-
LayoutTests/js/script-tests/arrowfunction-associativity-2.js (modified) (1 diff)
-
LayoutTests/js/script-tests/arrowfunction-block-1.js (modified) (1 diff)
-
LayoutTests/js/script-tests/arrowfunction-block-2.js (modified) (1 diff)
-
LayoutTests/js/script-tests/arrowfunction-syntax-endings.js (modified) (1 diff)
-
LayoutTests/js/script-tests/arrowfunction-syntax-errors.js (modified) (1 diff)
-
LayoutTests/js/script-tests/arrowfunction-syntax.js (modified) (1 diff)
-
Source/JavaScriptCore/Configurations/FeatureDefines.xcconfig (modified) (1 diff)
-
Source/WTF/wtf/FeatureDefines.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/safari-601.1-branch/LayoutTests/TestExpectations
r186161 r187335 530 530 js/intl.html [ Skip ] 531 531 532 # Arrow functions are not implemented in a semantically correct way. 533 # <rdar://problem/21953865> 534 js/arrowfunction-asparamter-1.html [ Skip ] 535 js/arrowfunction-asparamter-2.html [ Skip ] 536 js/arrowfunction-associativity-1.html [ Skip ] 537 js/arrowfunction-associativity-2.html [ Skip ] 538 js/arrowfunction-block-1.html [ Skip ] 539 js/arrowfunction-block-2.html [ Skip ] 540 js/arrowfunction-syntax-endings.html [ Skip ] 541 js/arrowfunction-syntax-errors.html [ Skip ] 542 js/arrowfunction-syntax.html [ Skip ] -
branches/safari-601.1-branch/LayoutTests/js/script-tests/arrowfunction-asparamter-1.js
r185989 r187335 1 //@ skip 2 1 3 description('Tests for ES6 arrow function, passing arrow function as the paramter'); 2 4 -
branches/safari-601.1-branch/LayoutTests/js/script-tests/arrowfunction-asparamter-2.js
r185989 r187335 1 //@ skip 2 1 3 description('Tests for ES6 arrow function, passing arrow function as the paramter'); 2 4 -
branches/safari-601.1-branch/LayoutTests/js/script-tests/arrowfunction-associativity-1.js
r185989 r187335 1 //@ skip 2 1 3 description('Tests for ES6 arrow function nested declaration'); 2 4 -
branches/safari-601.1-branch/LayoutTests/js/script-tests/arrowfunction-associativity-2.js
r185989 r187335 1 //@ skip 2 1 3 description('Tests for ES6 arrow function nested declaration'); 2 4 -
branches/safari-601.1-branch/LayoutTests/js/script-tests/arrowfunction-block-1.js
r185989 r187335 1 //@ skip 2 1 3 description('Tests for ES6 arrow function declaration body as block'); 2 4 -
branches/safari-601.1-branch/LayoutTests/js/script-tests/arrowfunction-block-2.js
r185989 r187335 1 //@ skip 2 1 3 description('Tests for ES6 arrow function declaration body as block'); 2 4 -
branches/safari-601.1-branch/LayoutTests/js/script-tests/arrowfunction-syntax-endings.js
r185989 r187335 1 //@ skip 2 1 3 description("Tests for ES6 arrow function endings"); 2 4 -
branches/safari-601.1-branch/LayoutTests/js/script-tests/arrowfunction-syntax-errors.js
r186047 r187335 1 //@ skip 2 1 3 description("Tests for ES6 arrow function syntax errors"); 2 4 -
branches/safari-601.1-branch/LayoutTests/js/script-tests/arrowfunction-syntax.js
r185989 r187335 1 //@ skip 2 1 3 description("Tests for ES6 arrow function calling"); 2 4 -
branches/safari-601.1-branch/Source/JavaScriptCore/Configurations/FeatureDefines.xcconfig
r186676 r187335 46 46 ENABLE_CANVAS_PROXY = ; 47 47 ENABLE_CHANNEL_MESSAGING = ENABLE_CHANNEL_MESSAGING; 48 ENABLE_ES6_ARROWFUNCTION_SYNTAX = ENABLE_ES6_ARROWFUNCTION_SYNTAX;48 ENABLE_ES6_ARROWFUNCTION_SYNTAX = ; 49 49 ENABLE_ES6_CLASS_SYNTAX = ENABLE_ES6_CLASS_SYNTAX; 50 50 ENABLE_ES6_TEMPLATE_LITERAL_SYNTAX = ENABLE_ES6_TEMPLATE_LITERAL_SYNTAX; -
branches/safari-601.1-branch/Source/WTF/wtf/FeatureDefines.h
r186676 r187335 355 355 356 356 #if !defined(ENABLE_ES6_ARROWFUNCTION_SYNTAX) 357 #define ENABLE_ES6_ARROWFUNCTION_SYNTAX 1357 #define ENABLE_ES6_ARROWFUNCTION_SYNTAX 0 358 358 #endif 359 359
Note:
See TracChangeset
for help on using the changeset viewer.