Skip to content

Commit

Permalink
edit lib/mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
ruanyf committed Jun 30, 2015
1 parent 0508542 commit f196389
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions lib/mapper.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,6 @@ var mapper = {
en: 'Module import command',
example: 'import bar from "foo"'
},
class: {
cn: 'classes的别名',
en: 'classes alias',
example: ''
},
numericLiteral: {
cn: '数值的八进制和二进制表示法',
en: 'Octal and binary literal forms',
Expand Down Expand Up @@ -109,6 +104,11 @@ var mapper = {
en:'Class',
example: 'class A extends B { .. }'
},
class: {
cn: '类(class)',
en:'Class',
example: 'class A extends B { .. }'
},
letTDZ: {
cn: 'let命令的暂时性死区',
en: 'TDZ error for too-early access of let or const declarations',
Expand Down Expand Up @@ -218,3 +218,4 @@ var mapper = {
};

module.exports = mapper;

0 comments on commit f196389

Please sign in to comment.