Implement std::map as an iface/impl instead of an obj

This commit is contained in:
Marijn Haverbeke 2012-01-09 16:24:53 +01:00
parent c68345e57e
commit 15744210e7
9 changed files with 129 additions and 184 deletions

View file

@ -33,7 +33,7 @@ tag json {
/* Variant: list */
list(@[json]);
/* Variant: dict */
dict(map::hashmap<str,json>);
dict(map::map<str,json>);
/* Variant: null */
null;
}