forked from carbon-language/carbon-lang
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update precedence rules to match design. (carbon-language#3081)
- Only allow assignment at the top level in an expression statement. - Allow both negation and complement as subexpressions of both bitwise and numeric operators. - Remove parsing support for postincrement and postdecrement. - Add parsing support for `as` operator. - Use the same ambient precedence for types and non-type expressions. --------- Co-authored-by: Chandler Carruth <[email protected]>
- Loading branch information
Showing
18 changed files
with
634 additions
and
99 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
// Part of the Carbon Language project, under the Apache License v2.0 with LLVM | ||
// Exceptions. See /LICENSE for license information. | ||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
// | ||
// AUTOUPDATE | ||
|
||
var n: i32; | ||
|
||
fn F() -> if true then i32 else i32* { | ||
return if true then n else &n; | ||
} | ||
|
||
// CHECK:STDOUT: [ | ||
// CHECK:STDOUT: {kind: 'VariableIntroducer', text: 'var'}, | ||
// CHECK:STDOUT: {kind: 'Name', text: 'n'}, | ||
// CHECK:STDOUT: {kind: 'Literal', text: 'i32'}, | ||
// CHECK:STDOUT: {kind: 'PatternBinding', text: ':', subtree_size: 3}, | ||
// CHECK:STDOUT: {kind: 'VariableDeclaration', text: ';', subtree_size: 5}, | ||
// CHECK:STDOUT: {kind: 'FunctionIntroducer', text: 'fn'}, | ||
// CHECK:STDOUT: {kind: 'Name', text: 'F'}, | ||
// CHECK:STDOUT: {kind: 'ParameterListStart', text: '('}, | ||
// CHECK:STDOUT: {kind: 'ParameterList', text: ')', subtree_size: 2}, | ||
// CHECK:STDOUT: {kind: 'Literal', text: 'true'}, | ||
// CHECK:STDOUT: {kind: 'IfExpressionIf', text: 'if', subtree_size: 2}, | ||
// CHECK:STDOUT: {kind: 'Literal', text: 'i32'}, | ||
// CHECK:STDOUT: {kind: 'IfExpressionThen', text: 'then', subtree_size: 2}, | ||
// CHECK:STDOUT: {kind: 'Literal', text: 'i32'}, | ||
// CHECK:STDOUT: {kind: 'PostfixOperator', text: '*', subtree_size: 2}, | ||
// CHECK:STDOUT: {kind: 'IfExpressionElse', text: 'else', subtree_size: 7}, | ||
// CHECK:STDOUT: {kind: 'ReturnType', text: '->', subtree_size: 8}, | ||
// CHECK:STDOUT: {kind: 'FunctionDefinitionStart', text: '{', subtree_size: 13}, | ||
// CHECK:STDOUT: {kind: 'ReturnStatementStart', text: 'return'}, | ||
// CHECK:STDOUT: {kind: 'Literal', text: 'true'}, | ||
// CHECK:STDOUT: {kind: 'IfExpressionIf', text: 'if', subtree_size: 2}, | ||
// CHECK:STDOUT: {kind: 'NameExpression', text: 'n'}, | ||
// CHECK:STDOUT: {kind: 'IfExpressionThen', text: 'then', subtree_size: 2}, | ||
// CHECK:STDOUT: {kind: 'NameExpression', text: 'n'}, | ||
// CHECK:STDOUT: {kind: 'PrefixOperator', text: '&', subtree_size: 2}, | ||
// CHECK:STDOUT: {kind: 'IfExpressionElse', text: 'else', subtree_size: 7}, | ||
// CHECK:STDOUT: {kind: 'ReturnStatement', text: ';', subtree_size: 9}, | ||
// CHECK:STDOUT: {kind: 'FunctionDefinition', text: '}', subtree_size: 23}, | ||
// CHECK:STDOUT: {kind: 'FileEnd', text: ''}, | ||
// CHECK:STDOUT: ] |
Oops, something went wrong.