forked from akvelon/flutter-code-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjava_dart_syntax.dart
69 lines (64 loc) · 2.32 KB
/
java_dart_syntax.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/* Search for syntax errors for java and dart : missing parts of identifier,
for loop errors, missing semicolons. Including comments, strings. */
Map<int, String> findJavaDartErrors(String text) {
List<String> lines = text.split("\n");
Map<int, String> errors = {};
for (int i = 0; i < lines.length; i++) {
// ignore comments
if (lines[i].trim().startsWith("//")) {
continue;
}
if (lines[i].startsWith(RegExp("\\s*/\\*"))) {
while (
(!lines[i].contains(RegExp("\\*/\\s*"))) && (i < lines.length - 1)) {
i++;
}
}
// ignore multiline String var
if (lines[i].contains(RegExp("'''")) &&
(!lines[i].contains(RegExp("[\"'].*'''.*[\"']")))) {
do {
if (lines[i].contains(RegExp("'''.*'''"))) break;
i++;
} while ((!lines[i].contains(RegExp("'''"))) && (i < lines.length - 1));
} else if (lines[i].contains(RegExp("\"\"\"")) &&
(!lines[i].contains(RegExp("[\"'].*\"\"\".*[\"']")))) {
do {
if (lines[i].contains(RegExp("\"\"\".*\"\"\""))) break;
i++;
} while (
(!lines[i].contains(RegExp("\"\"\""))) && (i < lines.length - 1));
}
// errors with identifier and missing semicolon
if (lines[i].contains(RegExp("[^<>!=]=[^<>!=]*")) &&
!lines[i].contains(RegExp("[\"'].*=.*[\"']")) &&
!lines[i].contains(";")) {
String command = lines[i];
while (!lines[i].trim().endsWith(";") && (i < lines.length - 1)) {
i++;
command += lines[i];
}
if (command.contains(RegExp("=\\s*;"))) {
errors.addAll({(i + 1): "Missing identifier"});
}
} else if (lines[i].contains(RegExp("=\\s*;"))) {
errors.addAll({(i + 1): "Missing identifier"});
}
// error in for construct
if (lines[i].contains(RegExp("\\s*for\\s*\\(")) &&
(!lines[i].contains(RegExp("[\"']\\s*for\\s*\\([\"']"))) &&
(!lines[i].contains(RegExp("//\\s*for\\s*\\(")))) {
String commandFor = "";
while (!lines[i].contains(RegExp("\\)")) && (i < lines.length - 1)) {
commandFor += lines[i];
i++;
lines[i] = lines[i];
}
commandFor += lines[i];
if (!commandFor.contains(RegExp("for.*\\(.*[;].*[;].*\\)"))) {
errors.addAll({(i + 1): "Missing ';' in for statement"});
}
}
}
return errors;
}