Skip to content

Commit

Permalink
rebase again and fix message code
Browse files Browse the repository at this point in the history
  • Loading branch information
plantain-00 committed Sep 14, 2016
1 parent a8ad690 commit f8366b6
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 40 deletions.
@@ -1,60 +1,60 @@
tests/cases/compiler/checkGrammarStaticMemberName_es5.ts(3,5): error TS2695: 'length' is not allowed to be used as a name of a static property or method in a class for target ES5.
tests/cases/compiler/checkGrammarStaticMemberName_es5.ts(4,5): error TS2695: 'name' is not allowed to be used as a name of a static property or method in a class for target ES5.
tests/cases/compiler/checkGrammarStaticMemberName_es5.ts(5,5): error TS2695: 'arguments' is not allowed to be used as a name of a static property or method in a class for target ES5.
tests/cases/compiler/checkGrammarStaticMemberName_es5.ts(6,5): error TS2695: 'caller' is not allowed to be used as a name of a static property or method in a class for target ES5.
tests/cases/compiler/checkGrammarStaticMemberName_es5.ts(8,9): error TS2695: 'length' is not allowed to be used as a name of a static property or method in a class for target ES5.
tests/cases/compiler/checkGrammarStaticMemberName_es5.ts(9,9): error TS2695: 'name' is not allowed to be used as a name of a static property or method in a class for target ES5.
tests/cases/compiler/checkGrammarStaticMemberName_es5.ts(10,9): error TS2695: 'arguments' is not allowed to be used as a name of a static property or method in a class for target ES5.
tests/cases/compiler/checkGrammarStaticMemberName_es5.ts(11,9): error TS2695: 'caller' is not allowed to be used as a name of a static property or method in a class for target ES5.
tests/cases/compiler/checkGrammarStaticMemberName_es5.ts(16,12): error TS2695: 'length' is not allowed to be used as a name of a static property or method in a class for target ES5.
tests/cases/compiler/checkGrammarStaticMemberName_es5.ts(17,12): error TS2695: 'name' is not allowed to be used as a name of a static property or method in a class for target ES5.
tests/cases/compiler/checkGrammarStaticMemberName_es5.ts(18,12): error TS2695: 'arguments' is not allowed to be used as a name of a static property or method in a class for target ES5.
tests/cases/compiler/checkGrammarStaticMemberName_es5.ts(19,12): error TS2695: 'caller' is not allowed to be used as a name of a static property or method in a class for target ES5.
tests/cases/compiler/checkGrammarStaticMemberName_es5.ts(3,5): error TS2696: 'length' is not allowed to be used as a name of a static property or method in a class for target ES5.
tests/cases/compiler/checkGrammarStaticMemberName_es5.ts(4,5): error TS2696: 'name' is not allowed to be used as a name of a static property or method in a class for target ES5.
tests/cases/compiler/checkGrammarStaticMemberName_es5.ts(5,5): error TS2696: 'arguments' is not allowed to be used as a name of a static property or method in a class for target ES5.
tests/cases/compiler/checkGrammarStaticMemberName_es5.ts(6,5): error TS2696: 'caller' is not allowed to be used as a name of a static property or method in a class for target ES5.
tests/cases/compiler/checkGrammarStaticMemberName_es5.ts(8,9): error TS2696: 'length' is not allowed to be used as a name of a static property or method in a class for target ES5.
tests/cases/compiler/checkGrammarStaticMemberName_es5.ts(9,9): error TS2696: 'name' is not allowed to be used as a name of a static property or method in a class for target ES5.
tests/cases/compiler/checkGrammarStaticMemberName_es5.ts(10,9): error TS2696: 'arguments' is not allowed to be used as a name of a static property or method in a class for target ES5.
tests/cases/compiler/checkGrammarStaticMemberName_es5.ts(11,9): error TS2696: 'caller' is not allowed to be used as a name of a static property or method in a class for target ES5.
tests/cases/compiler/checkGrammarStaticMemberName_es5.ts(16,12): error TS2696: 'length' is not allowed to be used as a name of a static property or method in a class for target ES5.
tests/cases/compiler/checkGrammarStaticMemberName_es5.ts(17,12): error TS2696: 'name' is not allowed to be used as a name of a static property or method in a class for target ES5.
tests/cases/compiler/checkGrammarStaticMemberName_es5.ts(18,12): error TS2696: 'arguments' is not allowed to be used as a name of a static property or method in a class for target ES5.
tests/cases/compiler/checkGrammarStaticMemberName_es5.ts(19,12): error TS2696: 'caller' is not allowed to be used as a name of a static property or method in a class for target ES5.


==== tests/cases/compiler/checkGrammarStaticMemberName_es5.ts (12 errors) ====

class static_property {
static length = 1;
~~~~~~~~~~~~~~~~~~
!!! error TS2695: 'length' is not allowed to be used as a name of a static property or method in a class for target ES5.
!!! error TS2696: 'length' is not allowed to be used as a name of a static property or method in a class for target ES5.
static name = 1;
~~~~~~~~~~~~~~~~
!!! error TS2695: 'name' is not allowed to be used as a name of a static property or method in a class for target ES5.
!!! error TS2696: 'name' is not allowed to be used as a name of a static property or method in a class for target ES5.
static arguments = 1;
~~~~~~~~~~~~~~~~~~~~~
!!! error TS2695: 'arguments' is not allowed to be used as a name of a static property or method in a class for target ES5.
!!! error TS2696: 'arguments' is not allowed to be used as a name of a static property or method in a class for target ES5.
static caller = 1;
~~~~~~~~~~~~~~~~~~
!!! error TS2695: 'caller' is not allowed to be used as a name of a static property or method in a class for target ES5.
!!! error TS2696: 'caller' is not allowed to be used as a name of a static property or method in a class for target ES5.
static foo = {
["length"]: 1,
~~~~~~~~~~
!!! error TS2695: 'length' is not allowed to be used as a name of a static property or method in a class for target ES5.
!!! error TS2696: 'length' is not allowed to be used as a name of a static property or method in a class for target ES5.
["name"]: 1,
~~~~~~~~
!!! error TS2695: 'name' is not allowed to be used as a name of a static property or method in a class for target ES5.
!!! error TS2696: 'name' is not allowed to be used as a name of a static property or method in a class for target ES5.
["arguments"]: 1,
~~~~~~~~~~~~~
!!! error TS2695: 'arguments' is not allowed to be used as a name of a static property or method in a class for target ES5.
!!! error TS2696: 'arguments' is not allowed to be used as a name of a static property or method in a class for target ES5.
["caller"]: 1,
~~~~~~~~~~
!!! error TS2695: 'caller' is not allowed to be used as a name of a static property or method in a class for target ES5.
!!! error TS2696: 'caller' is not allowed to be used as a name of a static property or method in a class for target ES5.
};
}

class static_method {
static length() { return 1; }
~~~~~~
!!! error TS2695: 'length' is not allowed to be used as a name of a static property or method in a class for target ES5.
!!! error TS2696: 'length' is not allowed to be used as a name of a static property or method in a class for target ES5.
static name() { return 1; }
~~~~
!!! error TS2695: 'name' is not allowed to be used as a name of a static property or method in a class for target ES5.
!!! error TS2696: 'name' is not allowed to be used as a name of a static property or method in a class for target ES5.
static arguments() { return 1; }
~~~~~~~~~
!!! error TS2695: 'arguments' is not allowed to be used as a name of a static property or method in a class for target ES5.
!!! error TS2696: 'arguments' is not allowed to be used as a name of a static property or method in a class for target ES5.
static caller() { return 1; }
~~~~~~
!!! error TS2695: 'caller' is not allowed to be used as a name of a static property or method in a class for target ES5.
!!! error TS2696: 'caller' is not allowed to be used as a name of a static property or method in a class for target ES5.
}

@@ -1,41 +1,41 @@
tests/cases/compiler/checkGrammarStaticMemberName_es6.ts(3,5): error TS2695: 'length' is not allowed to be used as a name of a static property in a class for target ES6 and higher.
tests/cases/compiler/checkGrammarStaticMemberName_es6.ts(4,5): error TS2695: 'name' is not allowed to be used as a name of a static property in a class for target ES6 and higher.
tests/cases/compiler/checkGrammarStaticMemberName_es6.ts(5,5): error TS2695: 'arguments' is not allowed to be used as a name of a static property in a class for target ES6 and higher.
tests/cases/compiler/checkGrammarStaticMemberName_es6.ts(6,5): error TS2695: 'caller' is not allowed to be used as a name of a static property in a class for target ES6 and higher.
tests/cases/compiler/checkGrammarStaticMemberName_es6.ts(8,9): error TS2695: 'length' is not allowed to be used as a name of a static property in a class for target ES6 and higher.
tests/cases/compiler/checkGrammarStaticMemberName_es6.ts(9,9): error TS2695: 'name' is not allowed to be used as a name of a static property in a class for target ES6 and higher.
tests/cases/compiler/checkGrammarStaticMemberName_es6.ts(10,9): error TS2695: 'arguments' is not allowed to be used as a name of a static property in a class for target ES6 and higher.
tests/cases/compiler/checkGrammarStaticMemberName_es6.ts(11,9): error TS2695: 'caller' is not allowed to be used as a name of a static property in a class for target ES6 and higher.
tests/cases/compiler/checkGrammarStaticMemberName_es6.ts(3,5): error TS2697: 'length' is not allowed to be used as a name of a static property in a class for target ES6 and higher.
tests/cases/compiler/checkGrammarStaticMemberName_es6.ts(4,5): error TS2697: 'name' is not allowed to be used as a name of a static property in a class for target ES6 and higher.
tests/cases/compiler/checkGrammarStaticMemberName_es6.ts(5,5): error TS2697: 'arguments' is not allowed to be used as a name of a static property in a class for target ES6 and higher.
tests/cases/compiler/checkGrammarStaticMemberName_es6.ts(6,5): error TS2697: 'caller' is not allowed to be used as a name of a static property in a class for target ES6 and higher.
tests/cases/compiler/checkGrammarStaticMemberName_es6.ts(8,9): error TS2697: 'length' is not allowed to be used as a name of a static property in a class for target ES6 and higher.
tests/cases/compiler/checkGrammarStaticMemberName_es6.ts(9,9): error TS2697: 'name' is not allowed to be used as a name of a static property in a class for target ES6 and higher.
tests/cases/compiler/checkGrammarStaticMemberName_es6.ts(10,9): error TS2697: 'arguments' is not allowed to be used as a name of a static property in a class for target ES6 and higher.
tests/cases/compiler/checkGrammarStaticMemberName_es6.ts(11,9): error TS2697: 'caller' is not allowed to be used as a name of a static property in a class for target ES6 and higher.


==== tests/cases/compiler/checkGrammarStaticMemberName_es6.ts (8 errors) ====

class static_property {
static length = 1;
~~~~~~~~~~~~~~~~~~
!!! error TS2695: 'length' is not allowed to be used as a name of a static property in a class for target ES6 and higher.
!!! error TS2697: 'length' is not allowed to be used as a name of a static property in a class for target ES6 and higher.
static name = 1;
~~~~~~~~~~~~~~~~
!!! error TS2695: 'name' is not allowed to be used as a name of a static property in a class for target ES6 and higher.
!!! error TS2697: 'name' is not allowed to be used as a name of a static property in a class for target ES6 and higher.
static arguments = 1;
~~~~~~~~~~~~~~~~~~~~~
!!! error TS2695: 'arguments' is not allowed to be used as a name of a static property in a class for target ES6 and higher.
!!! error TS2697: 'arguments' is not allowed to be used as a name of a static property in a class for target ES6 and higher.
static caller = 1;
~~~~~~~~~~~~~~~~~~
!!! error TS2695: 'caller' is not allowed to be used as a name of a static property in a class for target ES6 and higher.
!!! error TS2697: 'caller' is not allowed to be used as a name of a static property in a class for target ES6 and higher.
static foo = {
["length"]: 1,
~~~~~~~~~~
!!! error TS2695: 'length' is not allowed to be used as a name of a static property in a class for target ES6 and higher.
!!! error TS2697: 'length' is not allowed to be used as a name of a static property in a class for target ES6 and higher.
["name"]: 1,
~~~~~~~~
!!! error TS2695: 'name' is not allowed to be used as a name of a static property in a class for target ES6 and higher.
!!! error TS2697: 'name' is not allowed to be used as a name of a static property in a class for target ES6 and higher.
["arguments"]: 1,
~~~~~~~~~~~~~
!!! error TS2695: 'arguments' is not allowed to be used as a name of a static property in a class for target ES6 and higher.
!!! error TS2697: 'arguments' is not allowed to be used as a name of a static property in a class for target ES6 and higher.
["caller"]: 1,
~~~~~~~~~~
!!! error TS2695: 'caller' is not allowed to be used as a name of a static property in a class for target ES6 and higher.
!!! error TS2697: 'caller' is not allowed to be used as a name of a static property in a class for target ES6 and higher.
};
}

Expand Down

0 comments on commit f8366b6

Please sign in to comment.