Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
change name INT to INTEGER
  • Loading branch information
AngersZhuuuu committed Sep 5, 2019
commit 26de9057060d5c8e908830a9406b95440ed2429f
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ object Type {
def types: Seq[Type] =
Seq(NULL,
STRING,
INT,
INTEGER,
BOOLEAN,
DOUBLE,
FLOAT,
Expand Down Expand Up @@ -207,7 +207,7 @@ object Type {
override def isCaseSensitive: Boolean = true
}

case object INT extends Type {
case object INTEGER extends Type {
override def getName: String = "INT"

override def isComplex: Boolean = false
Expand Down