forked from es-analysis/plato
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'typhonjs-node-escomplex-master'
* typhonjs-node-escomplex-master: locked typhonjs-escomplex to 0.0.9; I think we're good to go! locked typhonjs-escomplex to 0.0.7 and updated src / tests locked typhonjs-escomplex to 0.0.6 as 0.0.7 will have a small change. Added ES6 tests and automatic detection of ES6 source for jshint. Update to support typhonjs-escomplex
- Loading branch information
Showing
18 changed files
with
244 additions
and
186 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
tmp | ||
node_module | ||
node_modules | ||
.idea | ||
.DS_Store | ||
npm-debug.log | ||
node_modules | ||
*.sass-cache | ||
tmp/ | ||
reports/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
|
||
const a = 1; | ||
|
||
class C | ||
{ | ||
static classMethodA(arg) { | ||
return arg; | ||
} | ||
|
||
static classMethodB(arg) { | ||
return arg; | ||
} | ||
} | ||
|
||
function moduleMethod(arg) { | ||
return arg; | ||
} | ||
|
||
const b = moduleMethod(0) + C.classMethodB(1) + C.classMethodA(2); | ||
|
||
export default C; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
|
||
const a = 1; | ||
|
||
class D | ||
{ | ||
static classMethodA(arg) { | ||
return arg; | ||
} | ||
|
||
static classMethodB(arg) { | ||
return arg; | ||
} | ||
} | ||
|
||
function moduleMethod(arg) { | ||
return arg; | ||
} | ||
|
||
const b = moduleMethod(0) + D.classMethodB(1) + D.classMethodA(2); | ||
|
||
let c = b + moduleMethod(0) + D.classMethodA(a) * D.classMethodB(1); | ||
c = null; | ||
|
||
export default D; |
Oops, something went wrong.