mirror of
https://github.com/github/codeql.git
synced 2026-04-28 18:25:24 +02:00
Format QL
This commit is contained in:
@@ -1,9 +1,7 @@
|
||||
import semmle.code.java.Expr
|
||||
|
||||
class SrcFloatingPointLiteral extends FloatLiteral {
|
||||
SrcFloatingPointLiteral() {
|
||||
this.getCompilationUnit().fromSource()
|
||||
}
|
||||
SrcFloatingPointLiteral() { this.getCompilationUnit().fromSource() }
|
||||
}
|
||||
|
||||
from FloatLiteral lit
|
||||
|
||||
@@ -1,9 +1,7 @@
|
||||
import semmle.code.java.Expr
|
||||
|
||||
class SrcIntegerLiteral extends IntegerLiteral {
|
||||
SrcIntegerLiteral() {
|
||||
this.getCompilationUnit().fromSource()
|
||||
}
|
||||
SrcIntegerLiteral() { this.getCompilationUnit().fromSource() }
|
||||
}
|
||||
|
||||
from SrcIntegerLiteral lit
|
||||
|
||||
@@ -1,9 +1,7 @@
|
||||
import java
|
||||
|
||||
class SrcLiteral extends Literal {
|
||||
SrcLiteral() {
|
||||
this.getCompilationUnit().fromSource()
|
||||
}
|
||||
SrcLiteral() { this.getCompilationUnit().fromSource() }
|
||||
}
|
||||
|
||||
from SrcLiteral l
|
||||
|
||||
Reference in New Issue
Block a user