Skip to content
Snippets Groups Projects
Select Git revision
  • master default
  • labcomm2006
  • typedefs
  • anders.blomdell
  • typeref
  • pragma
  • compiler-refactoring
  • labcomm2013
  • v2014.4
  • v2006.0
  • v2014.3
  • v2014.2
  • v2014.1
  • v2014.0
  • v2013.0
15 results

LabCommmTokens.jrag

Blame
  • Forked from Anders Blomdell / LabComm
    597 commits behind the upstream repository.
    LabCommmTokens.jrag 725 B
    aspect LabCommTokens {
    
      public static final int ASTNode.LABCOMM_TYPEDEF = 0x01;
      public static final int ASTNode.LABCOMM_SAMPLE =  0x02;
    
      public static final int ASTNode.LABCOMM_ARRAY =   0x10;
      public static final int ASTNode.LABCOMM_STRUCT =  0x11;
    
      public static final int ASTNode.LABCOMM_BOOLEAN = 0x20; 
      public static final int ASTNode.LABCOMM_BYTE =    0x21;
      public static final int ASTNode.LABCOMM_SHORT =   0x22;
      public static final int ASTNode.LABCOMM_INT =     0x23;
      public static final int ASTNode.LABCOMM_LONG =    0x24;
      public static final int ASTNode.LABCOMM_FLOAT =   0x25;
      public static final int ASTNode.LABCOMM_DOUBLE =  0x26;
      public static final int ASTNode.LABCOMM_STRING =  0x27;
    
    }