couple more tuple leftovers
This commit is contained in:
@@ -77,7 +77,6 @@ public class JetExpressionParsing extends AbstractJetParsing {
|
|||||||
COLONCOLON, // callable reference
|
COLONCOLON, // callable reference
|
||||||
|
|
||||||
LPAR, // parenthesized
|
LPAR, // parenthesized
|
||||||
HASH, // Tuple
|
|
||||||
|
|
||||||
// literal constant
|
// literal constant
|
||||||
TRUE_KEYWORD, FALSE_KEYWORD,
|
TRUE_KEYWORD, FALSE_KEYWORD,
|
||||||
@@ -88,8 +87,6 @@ public class JetExpressionParsing extends AbstractJetParsing {
|
|||||||
LBRACE, // functionLiteral
|
LBRACE, // functionLiteral
|
||||||
FUN_KEYWORD, // expression function
|
FUN_KEYWORD, // expression function
|
||||||
|
|
||||||
LPAR, // tuple
|
|
||||||
|
|
||||||
THIS_KEYWORD, // this
|
THIS_KEYWORD, // this
|
||||||
SUPER_KEYWORD, // super
|
SUPER_KEYWORD, // super
|
||||||
|
|
||||||
|
|||||||
+11
-7
@@ -18,13 +18,17 @@ JetFile: ShebangIncorrect.kts
|
|||||||
PsiWhiteSpace(' ')
|
PsiWhiteSpace(' ')
|
||||||
PsiErrorElement:Expecting an element
|
PsiErrorElement:Expecting an element
|
||||||
PsiElement(HASH)('#')
|
PsiElement(HASH)('#')
|
||||||
PsiErrorElement:Unexpected tokens (use ';' to separate expressions on the same line)
|
BINARY_EXPRESSION
|
||||||
PsiElement(EXCL)('!')
|
PREFIX_EXPRESSION
|
||||||
PsiElement(DIV)('/')
|
OPERATION_REFERENCE
|
||||||
PsiElement(IDENTIFIER)('usr')
|
PsiElement(EXCL)('!')
|
||||||
PsiWhiteSpace('\n\n')
|
PsiErrorElement:Expecting an element
|
||||||
PsiErrorElement:Expecting an element
|
PsiElement(DIV)('/')
|
||||||
PsiElement(HASH)('#')
|
OPERATION_REFERENCE
|
||||||
|
PsiElement(IDENTIFIER)('usr')
|
||||||
|
PsiWhiteSpace('\n\n')
|
||||||
|
PsiErrorElement:Expecting an element
|
||||||
|
PsiElement(HASH)('#')
|
||||||
PsiErrorElement:Unexpected tokens (use ';' to separate expressions on the same line)
|
PsiErrorElement:Unexpected tokens (use ';' to separate expressions on the same line)
|
||||||
PsiElement(EXCL)('!')
|
PsiElement(EXCL)('!')
|
||||||
PsiElement(DIV)('/')
|
PsiElement(DIV)('/')
|
||||||
|
|||||||
Reference in New Issue
Block a user