Example #1
0
        /*
         * Compile a single file into a ZerothDictionary
         */
        public ZerothDictionary BuildFile(LoadedFile file)
        {
            logger?.log($"[Compiler] Building '{file.FileName}'");
            ZerothCompilerState state = new ZerothCompilerState
            {
            };



            return(null);
        }
Example #2
0
 public ZerothCompilerException(ZerothCompilerState state, String message) : base($"Compile Error:\n'{message}'\nnear token {state.Enumerator.Current} on line {state.Enumerator.Line} in file {state.FileName}")
 {
 }