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