PageRenderTime 58ms CodeModel.GetById 33ms RepoModel.GetById 0ms app.codeStats 0ms

/Global.cs

https://bitbucket.org/cvillamor/compiler
C# | 14 lines | 12 code | 1 blank | 1 comment | 0 complexity | 6f2be12d4f70cf915aaa543d5d498a5e MD5 | raw file
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Compiler_
  6. {
  7. class Global
  8. {
  9. //Current token
  10. public static Token CURRENT_TOKEN;
  11. public static Token PREV_TOKEN;
  12. }
  13. }