-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5201b7e
commit 7d499c3
Showing
13 changed files
with
362 additions
and
220 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
# intellij-runescript Changelog | ||
|
||
## [Unreleased] | ||
- Add support for long numeric type. | ||
|
||
## [1.4.1] - 2023-10-16 | ||
|
||
|
401 changes: 206 additions & 195 deletions
401
src/main/gen/io/runescript/plugin/lang/lexer/_RsLexer.java
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
src/main/gen/io/runescript/plugin/lang/psi/RsLongLiteralExpression.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// This class is automatically generated. Do not edit. | ||
package io.runescript.plugin.lang.psi; | ||
|
||
import java.util.List; | ||
import org.jetbrains.annotations.*; | ||
import com.intellij.psi.PsiElement; | ||
|
||
public interface RsLongLiteralExpression extends RsExpression { | ||
|
||
@NotNull | ||
PsiElement getLong(); | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
src/main/gen/io/runescript/plugin/lang/psi/impl/RsLongLiteralExpressionImpl.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
// This class is automatically generated. Do not edit. | ||
package io.runescript.plugin.lang.psi.impl; | ||
|
||
import java.util.List; | ||
import org.jetbrains.annotations.*; | ||
import com.intellij.lang.ASTNode; | ||
import com.intellij.psi.PsiElement; | ||
import com.intellij.psi.PsiElementVisitor; | ||
import com.intellij.psi.util.PsiTreeUtil; | ||
import static io.runescript.plugin.lang.psi.RsElementTypes.*; | ||
import io.runescript.plugin.lang.psi.*; | ||
|
||
public class RsLongLiteralExpressionImpl extends RsExpressionImpl implements RsLongLiteralExpression { | ||
|
||
public RsLongLiteralExpressionImpl(@NotNull ASTNode node) { | ||
super(node); | ||
} | ||
|
||
@Override | ||
public void accept(@NotNull RsVisitor visitor) { | ||
visitor.visitLongLiteralExpression(this); | ||
} | ||
|
||
@Override | ||
public void accept(@NotNull PsiElementVisitor visitor) { | ||
if (visitor instanceof RsVisitor) accept((RsVisitor)visitor); | ||
else super.accept(visitor); | ||
} | ||
|
||
@Override | ||
@NotNull | ||
public PsiElement getLong() { | ||
return notNullChild(findChildByType(LONG)); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters