Skip to content

Commit

Permalink
more dataset
Browse files Browse the repository at this point in the history
  • Loading branch information
JacksonGL committed Jun 23, 2014
1 parent d2d2e3c commit 6dd819e
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
11 changes: 11 additions & 0 deletions tests/demo/simple.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
function f(a, b) {
if(a > 0) {
// then branch
} else {
if (b === 35){
// else branch
}
}
}

f();
8 changes: 8 additions & 0 deletions tests/demo/typeof.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@


var input = J$.readInput(true);
if(typeof input === 'object') {
1;
} else {
2;
}

0 comments on commit 6dd819e

Please sign in to comment.