Rename test case

This commit is contained in:
Mohamed Hegazy
2015-04-06 16:24:55 -07:00
parent d71632aa38
commit 238a33daa0
3 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
//// [arrayBindingPattern.ts]
//// [arrayBindingPatternOmittedExpressions.ts]
var results: string[];
@@ -16,7 +16,7 @@ function f([, a, , b, , , , s, , , ] = results) {
b = s[2];
}
//// [arrayBindingPattern.js]
//// [arrayBindingPatternOmittedExpressions.js]
var results;
{
let [, b, , a] = results;

View File

@@ -1,4 +1,4 @@
=== tests/cases/compiler/arrayBindingPattern.ts ===
=== tests/cases/compiler/arrayBindingPatternOmittedExpressions.ts ===
var results: string[];
>results : string[]