1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 14:37:45 +00:00

LibCpp: Update regressions tests results

The LibCpp regression tests results have to be updated after tweaking
the token end position calculation logic of some token types.
This commit is contained in:
Itamar 2022-02-08 19:13:46 +02:00 committed by Andreas Kling
parent b67a090b79
commit 605becb28b
11 changed files with 202 additions and 198 deletions

View file

@ -1,6 +1,6 @@
TranslationUnit[1:0->7:0]
FunctionDeclaration[1:0->7:0]
NamedType[1:0->1:4]
NamedType[1:0->1:2]
int
foo
(
@ -8,26 +8,26 @@ TranslationUnit[1:0->7:0]
FunctionDefinition[2:0->7:0]
{
VariableDeclaration[3:4->3:9]
NamedType[3:4->3:8]
NamedType[3:4->3:6]
int
x
VariableDeclaration[4:4->4:16]
NamedType[4:4->4:11]
NamedType[4:4->4:9]
double
y
NumericLiteral[4:15->4:15]
2
VariableDeclaration[5:4->5:20]
NamedType[5:4->5:11]
NamedType[5:4->5:9]
double
z
BinaryExpression[5:15->5:20]
Name[5:15->5:17]
BinaryExpression[5:15->5:19]
Name[5:15->5:15]
x
+
Name[5:19->5:20]
Name[5:19->5:19]
y
ReturnStatement[6:4->6:12]
Name[6:11->6:12]
Name[6:11->6:11]
z
}