Initial Commit

This commit is contained in:
Gerrit Linnemann
2017-12-18 14:24:11 +01:00
commit 0dd4236e11
2204 changed files with 269997 additions and 0 deletions
@@ -0,0 +1,6 @@
[
false
/*
true
*/
]
@@ -0,0 +1,5 @@
null
/*
Some non-comment top-level value is needed;
we use null above.
*/
@@ -0,0 +1 @@
"This /* block comment */ isn't really a block comment."
@@ -0,0 +1,5 @@
/*
Some non-comment top-level value is needed;
we use null below.
*/
null
@@ -0,0 +1,7 @@
/**
* This is a JavaDoc-like block comment.
* It contains asterisks inside of it.
* It might also be closed with multiple asterisks.
* Like this:
**/
true
@@ -0,0 +1,3 @@
[
false // true
]
@@ -0,0 +1 @@
null // Some non-comment top-level value is needed; we use null here.
@@ -0,0 +1 @@
"This inline comment // isn't really an inline comment."
@@ -0,0 +1,2 @@
// Some non-comment top-level value is needed; we use null below.
null
@@ -0,0 +1,4 @@
/*
This should fail;
comments cannot be the top-level value.
*/
@@ -0,0 +1 @@
// This should fail; comments cannot be the top-level value.
@@ -0,0 +1,5 @@
true
/*
This block comment doesn't terminate.
There was a legitimate value before this,
but this is still invalid JS/JSON5.