mint-lang / mint-vscode

VS Code Extension for Mint programming language
https://marketplace.visualstudio.com/items?itemName=mint-lang.mint
31 stars 10 forks source link

Add line comment parsing #23

Closed bbugh closed 3 years ago

bbugh commented 3 years ago

Since mint-lang/mint#451 landed with line comments 🎉 🎉 🎉 🎉 🎉 🎉 this updates the vscode tmLanguage to support line comments. Works for both standalone and in-line:

// Hello! This is a comment. /* asdf */
fun doSomething (number : Number) { // Test comment 2 works
  "hello"
}
gdotdesign commented 3 years ago

Thanks :pray: