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