Draco-lang / Compiler

The compiler repository for the Draco programming language.
Apache License 2.0
74 stars 9 forks source link

Differences with Roslyn API #401

Open Kuinox opened 1 month ago

Kuinox commented 1 month ago

This issue allow us to track the difference with the Roslyn API so we get closer to it's API.

Kuinox commented 1 month ago

Draco.TokenKind => Roslyn.SyntaxKind TokenKind.KeywordTHEKEYWORD (TokenKind.KeywordAnd) => SyntaxKind.THEKEYWORDKeyword (SyntaxKind.AndKeyword)

Kuinox commented 1 month ago

TokenKind.Semicolon => SyntaxKind.SemicolonToken

Kuinox commented 1 month ago

Draco says "Curly", Roslyn says "Brace"