Draco-lang / Compiler

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

Differences with Roslyn API #401

Open Kuinox opened 6 months ago

Kuinox commented 6 months ago

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

Kuinox commented 6 months ago

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

Kuinox commented 6 months ago

TokenKind.Semicolon => SyntaxKind.SemicolonToken

Kuinox commented 6 months ago

Draco says "Curly", Roslyn says "Brace"