1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 04:07: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,3 +1,4 @@
PreprocessorStatement 0:0-0:19 (#define ADD(x,y) x+y)
Integer 1:0-1:2 (2)
Plus 1:0-1:2 (+)
Integer 1:0-1:2 (5)

View file

@ -1,3 +1,4 @@
PreprocessorStatement 0:0-0:29 (#define M(x) String {x + "lo"})
KnownType 2:0-2:0 (String)
LeftCurly 2:0-2:0 ({)
DoubleQuotedString 2:0-2:0 ("he")

View file

@ -1,3 +1,4 @@
PreprocessorStatement 0:0-0:26 (#define M(x, y, z) x y = z;)
KnownType 2:0-2:0 (Vector)
Identifier 2:0-2:0 (vec)
Equals 2:0-2:0 (=)

View file

@ -1,3 +1,4 @@
PreprocessorStatement 0:0-0:18 (#define NUMBER 1337)
KnownType 1:0-1:2 (int)
Identifier 1:4-1:4 (x)
Equals 1:6-1:6 (=)