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

CS_CodeGen.jrag

Blame
  • LabCommTokens.jrag 1.05 KiB
    aspect LabCommTokens {
    
      public static final int ASTNode.LABCOMM_VERSION =    0x01;  
      public static final int ASTNode.LABCOMM_SAMPLE_DEF = 0x02;  // The flat signature
      public static final int ASTNode.LABCOMM_SAMPLE_REF = 0x03;  
      public static final int ASTNode.LABCOMM_TYPE_DEF  =  0x03;  // and type declarations, hierarchically
      public static final int ASTNode.LABCOMM_TYPE_BINDING=0x05;
    
      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;
      public static final int ASTNode.LABCOMM_SAMPLE =     0x28;
    
    }