This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Antlr4.Runtime; | |
using Antlr4.Runtime.Misc; | |
using Parsing.AntlrGen; | |
using Parsing.Syntax; | |
namespace Parsing.Compilation; | |
// CDScript uses '=' for both assignment and comparison | |
// so we need a way to determine what it means based on | |
// the external context |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Option Infer On | |
Option Compare Text | |
Imports System | |
Imports EnvDTE | |
Imports EnvDTE80 | |
Imports EnvDTE90 | |
Imports EnvDTE90a | |
Imports EnvDTE100 | |
Imports System.Diagnostics |