forked from akvelon/flutter-code-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpython_syntax.dart
55 lines (46 loc) · 1.63 KB
/
python_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
/* Search for syntax errors for python : indentation errors.
Including comments, strings. */
Map<int, String> findPythonErrorTabs(String text) {
List<String> lines = text.split("\n");
Map<int, String> errors = {};
bool isPreviousLineContainsColon = false;
int previousCountOfSpace = 0;
for (int i = 0; i < lines.length; i++) {
int countOfSpace = 0;
if (lines[i].trim().isEmpty || lines[i].startsWith(RegExp("\\s*#"))) {
continue;
}
// 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));
}
int lineLength = lines[i].length;
while (lines[i][countOfSpace] == " " && (countOfSpace < lineLength)) {
countOfSpace++;
}
if (isPreviousLineContainsColon == true &&
(previousCountOfSpace + 4) != countOfSpace) {
errors.addAll({(i + 1): "error in indents"});
}
previousCountOfSpace = countOfSpace;
if ((lineLength > 2) &&
((lines[i][lineLength - 1] == ":") ||
(lines[i].contains(RegExp(":\\s*#"))))) {
isPreviousLineContainsColon = true;
} else {
isPreviousLineContainsColon = false;
}
}
return errors;
}