mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
Fix regression for parsing types and switch to the "new" generic syntax that's being tested.
This commit is contained in:
@@ -462,7 +462,7 @@ fn Object* Object.get_or_create_obj(&self, String key)
|
||||
return container;
|
||||
}
|
||||
|
||||
def ObjectInternalMap = HashMap(<String, Object*>) @private;
|
||||
def ObjectInternalList = List(<Object*>) @private;
|
||||
def ObjectInternalMapEntry = Entry(<String, Object*>) @private;
|
||||
def ObjectInternalMap = HashMap<[String, Object*]> @private;
|
||||
def ObjectInternalList = List<[Object*]> @private;
|
||||
def ObjectInternalMapEntry = Entry<[String, Object*]> @private;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user