Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
IPDSnelting
mjtest-tests
Commits
949a8450
Commit
949a8450
authored
Nov 05, 2021
by
Paul Brinkmeier
Browse files
Fix trailing whitespace and CSyntax filename
parent
a3d00cbc
Pipeline
#174899
failed with stage
in 4 minutes and 36 seconds
Changes
10
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
syntax/Add.valid.mj
View file @
949a8450
...
...
@@ -2,4 +2,4 @@ class Add {
public int add(int a, int b) {
return a + b;
}
}
\ No newline at end of file
}
syntax/Braces.valid.mj
View file @
949a8450
...
...
@@ -5,4 +5,4 @@ class PrivateMember {
public int foo() {
{}{}{{}}
}
}
\ No newline at end of file
}
syntax/
c
Syntax.invalid.mj
→
syntax/
C
Syntax.invalid.mj
View file @
949a8450
...
...
@@ -5,4 +5,4 @@ class PrivateMember {
private int foo() {
return 0;
}
}
\ No newline at end of file
}
syntax/DerCompilerMain.valid.mj
View file @
949a8450
...
...
@@ -20,4 +20,4 @@ class DerCompiler {
}
System.exit(0);
}
}
\ No newline at end of file
}
syntax/Foo.invalid.mj
View file @
949a8450
...
...
@@ -2,4 +2,4 @@ class FooTester2 {
public boolean isFoo(String maybeFoo; String definitelyFoo) {
return maybeFoo _ definitelyFoo;
}
}
\ No newline at end of file
}
syntax/Foo.valid.mj
View file @
949a8450
...
...
@@ -3,4 +3,4 @@ class FooTester {
public boolean isFoo(String maybeFoo, String definitelyFoo) {
return maybeFoo == definitelyFoo;
}
}
\ No newline at end of file
}
syntax/MultipleReturnStatements.valid.mj
View file @
949a8450
...
...
@@ -17,4 +17,4 @@ class irgendwas{
return;
}
}
\ No newline at end of file
}
syntax/PrivateMethod.invalid.mj
View file @
949a8450
...
...
@@ -3,4 +3,4 @@ class PrivateMember {
private int foo() {
return 0;
}
}
\ No newline at end of file
}
syntax/ReturnWhile.invalid.mj
View file @
949a8450
...
...
@@ -4,4 +4,4 @@ class ReturnWhile {
return while(true);
}
}
\ No newline at end of file
}
syntax/UseFor.invalid.mj
View file @
949a8450
...
...
@@ -10,4 +10,4 @@ class UseFor {
foo[i] = 0;
}
}
}
\ No newline at end of file
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment