Skip to content

Commit 2a7ee15

Browse files
committed
[Refactor] change tab to 4 space
1 parent 1e2e72b commit 2a7ee15

File tree

7 files changed

+268
-268
lines changed

7 files changed

+268
-268
lines changed

cli/sparrow

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ function get_realpath() {
1414

1515
PYTHON=""
1616
if command -v python > /dev/null 2>&1; then
17-
PYTHON="python"
17+
PYTHON="python
1818
elif command -v python2 > /dev/null 2>&1; then
1919
PYTHON="python2"
2020
elif command -v python3 > /dev/null 2>&1; then

example/java/ClassHierarchy.gdl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
use coref::java::*
33

44
fn default_java_db() -> JavaDB {
5-
return JavaDB::load("coref_java_src.db")
5+
return JavaDB::load("coref_java_src.db")
66
}
77

88
/**
@@ -19,5 +19,5 @@ fn class_hierarchy(className : string, superClassName : string) -> bool {
1919
}
2020

2121
fn main() {
22-
output(class_hierarchy())
22+
output(class_hierarchy())
2323
}

example/java/ClassMethods.gdl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
use coref::java::*
33

44
fn default_java_db() -> JavaDB {
5-
return JavaDB::load("coref_java_src.db")
5+
return JavaDB::load("coref_java_src.db")
66
}
77

88
// Find all methods of the class
@@ -16,5 +16,5 @@ fn methods(className : string, methodName : string) -> bool {
1616
}
1717

1818
fn main() {
19-
output(methods())
19+
output(methods())
2020
}

language/javascript/lib/Completion.gdl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ impl Completion {
88
@inline
99
pub fn __all__() -> *Completion {
1010
yield Completion {id: 1001, name: "NormalCompletion"}
11-
yield Completion {id: 1101, name: "ReturnCompletion"}
11+
yield Completion {id: 1101, name: "ReturnCompletion"}
1212
// BooleanCompletion
1313
yield Completion {id: 1201, name: "BooleanCompletion"}
1414
yield Completion {id: 1202, name: "TrueBooleanCompletion"}

0 commit comments

Comments
 (0)