You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,17 @@
1
1
# Changelog
2
2
3
+
## 0.1.0
4
+
5
+
Include a new property `warnings` in the parser output or error, which will contain an array of warnings. A warning is a mistake in the source code, which is not fatal (and will be compiled and executed properly), but which is against the modern language specification. Warn about:
6
+
7
+
* A line break in a single-line string
8
+
* A backslash not followed by a whitespace
9
+
* A `ifdef` or `ifndef` preprocessor directive without a name identifier following it
10
+
* An object declared with other modifier than `public`
11
+
* A preprocessor directive followed by non-whitespace characters
12
+
* A semicolon following feature, function or script declaration
13
+
* A missing line break or semicolon after an empty c-like for statement before the end keyword
0 commit comments