Reformat
This commit is contained in:
		@@ -20,7 +20,8 @@ struct Object {
 | 
			
		||||
  Object() : type{ObjectType::NIL}, value{std::monostate{}} {};
 | 
			
		||||
  Object(double number) : type{ObjectType::NUMBER}, value{number} {};
 | 
			
		||||
  Object(StringObjectType string_type, std::string value)
 | 
			
		||||
    : type{string_type == StringObjectType::IDENTIFIER ?
 | 
			
		||||
    : type{
 | 
			
		||||
        string_type == StringObjectType::IDENTIFIER ?
 | 
			
		||||
        ObjectType::IDENTIFIER :
 | 
			
		||||
        ObjectType::STRING_LIT
 | 
			
		||||
      },
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user