Esempio n. 1
0
def p_UnsignedIntegerType(p):
  """UnsignedIntegerType : IntegerType"""
  p[0] = helper.unwrapIntegerType(False, p[1])
Esempio n. 2
0
def p_UnsignedIntegerType(p):
    """UnsignedIntegerType : IntegerType"""
    p[0] = helper.unwrapIntegerType(False, p[1])
Esempio n. 3
0
def p_UnsignedIntegerType_unsigned(p):
  """UnsignedIntegerType : unsigned IntegerType"""
  p[0] = helper.unwrapIntegerType(True, p[2])
Esempio n. 4
0
def p_UnsignedIntegerType_unsigned(p):
    """UnsignedIntegerType : unsigned IntegerType"""
    p[0] = helper.unwrapIntegerType(True, p[2])