Rename Arrow to DoubleArrow

This commit is contained in:
Alex Beregszaszi
2020-08-27 12:28:27 +01:00
parent 4e5b403c37
commit 662f7d8fac
6 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -433,7 +433,7 @@ variableDeclarationTuple:
variableDeclarationStatement: ((variableDeclaration (Assign expression)?) | (variableDeclarationTuple Assign expression)) Semicolon;
expressionStatement: expression Semicolon;
mappingType: Mapping LParen key=mappingKeyType Arrow value=typeName RParen;
mappingType: Mapping LParen key=mappingKeyType DoubleArrow value=typeName RParen;
/**
* Only elementary types or user defined types are viable as mapping keys.
*/
+1 -1
View File
@@ -111,7 +111,7 @@ Colon: ':';
Semicolon: ';';
Period: '.';
Conditional: '?';
Arrow: '=>';
DoubleArrow: '=>';
RightArrow: '->';
Assign: '=';