Skip to content

Instantly share code, notes, and snippets.

@BonsaiDen
Last active December 21, 2015 09:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BonsaiDen/6286492 to your computer and use it in GitHub Desktop.
Save BonsaiDen/6286492 to your computer and use it in GitHub Desktop.
Mia testing
{
"name": "OrderedMap",
"exports": {},
"related": {},
"internal": {
"OrderedMap": {
"type": "Class",
"id": 81,
"name": "OrderedMap",
"comment": null,
"bases": [],
"params": ["capacity"],
"statics": [{
"type": "Property",
"id": 6,
"name": "_INSERTION_ORDER",
"comment": null
}, {
"type": "Property",
"id": 14,
"name": "_ACCESS_ORDER",
"comment": null
}, {
"type": "Function",
"id": 112,
"name": "inAccessOrder",
"comment": null,
"params": ["capacity"]
}],
"members": [{
"type": "Property",
"id": 24,
"name": "_buckets",
"comment": null
}, {
"type": "Property",
"id": 30,
"name": "_size",
"comment": null
}, {
"type": "Property",
"id": 36,
"name": "_modCount",
"comment": null
}, {
"type": "Property",
"id": 42,
"name": "_capacity",
"comment": null
}, {
"type": "Property",
"id": 50,
"name": "_equality",
"comment": null
}, {
"type": "Property",
"id": 56,
"name": "_usingSimpleEquals",
"comment": null
}, {
"type": "Property",
"id": 62,
"name": "_ordering",
"comment": null
}, {
"type": "Property",
"id": 71,
"name": "_lastEntry",
"comment": null
}, {
"type": "Property",
"id": 72,
"name": "_firstEntry",
"comment": null
}, {
"type": "Method",
"id": 226,
"name": "_resized",
"comment": null,
"params": [],
"supers": []
}, {
"type": "Method",
"id": 272,
"name": "_makeBuckets",
"comment": null,
"params": [],
"supers": []
}, {
"type": "Method",
"id": 300,
"name": "_keyAsBucketIndex",
"comment": null,
"params": ["key"],
"supers": []
}, {
"type": "Method",
"id": 339,
"name": "_getEntryWithKey",
"comment": null,
"params": ["entry", "key"],
"supers": []
}, {
"type": "Method",
"id": 460,
"name": "_setAll",
"comment": null,
"params": ["obj", "__value"],
"supers": []
}, {
"type": "Method",
"id": 614,
"name": "clone",
"comment": null,
"params": [],
"supers": []
}, {
"type": "Method",
"id": 740,
"name": "set",
"comment": null,
"params": ["key", "value"],
"supers": []
}, {
"type": "Method",
"id": 740,
"name": "put",
"comment": null,
"params": ["key", "value"],
"supers": []
}, {
"type": "Method",
"id": 875,
"name": "remove",
"comment": null,
"params": ["key"],
"supers": []
}, {
"type": "Method",
"id": 875,
"name": "unset",
"comment": null,
"params": ["key"],
"supers": []
}, {
"type": "Method",
"id": 875,
"name": "delete",
"comment": null,
"params": ["key"],
"supers": []
}, {
"type": "Method",
"id": 933,
"name": "get",
"comment": null,
"params": ["key"],
"supers": []
}, {
"type": "Method",
"id": 954,
"name": "hasValue",
"comment": null,
"params": ["value"],
"supers": []
}, {
"type": "Method",
"id": 954,
"name": "containsValue",
"comment": null,
"params": ["value"],
"supers": []
}, {
"type": "Method",
"id": 1015,
"name": "indexOfKey",
"comment": null,
"params": ["key"],
"supers": []
}, {
"type": "Method",
"id": 1069,
"name": "indexOfValue",
"comment": null,
"params": ["value"],
"supers": []
}, {
"type": "Method",
"id": 1093,
"name": "firstKey",
"comment": null,
"params": [],
"supers": []
}, {
"type": "Method",
"id": 1110,
"name": "first",
"comment": null,
"params": [],
"supers": []
}, {
"type": "Method",
"id": 1134,
"name": "lastKey",
"comment": null,
"params": [],
"supers": []
}, {
"type": "Method",
"id": 1151,
"name": "last",
"comment": null,
"params": [],
"supers": []
}, {
"type": "Method",
"id": 1202,
"name": "nthKey",
"comment": null,
"params": ["index"],
"supers": []
}, {
"type": "Method",
"id": 1224,
"name": "nthValue",
"comment": null,
"params": ["index"],
"supers": []
}, {
"type": "Method",
"id": 1224,
"name": "nth",
"comment": null,
"params": ["index"],
"supers": []
}, {
"type": "Method",
"id": 1265,
"name": "clear",
"comment": null,
"params": [],
"supers": []
}, {
"type": "Method",
"id": 1277,
"name": "iterator",
"comment": null,
"params": [],
"supers": []
}, {
"type": "Property",
"id": 1860,
"name": "_Iterator",
"comment": null
}]
},
"Iterator": {
"type": "Class",
"id": 1335,
"name": "Iterator",
"comment": null,
"bases": [],
"params": ["map"],
"statics": [],
"members": [{
"type": "Property",
"id": 1291,
"name": "value",
"comment": null
}, {
"type": "Property",
"id": 1292,
"name": "key",
"comment": null
}, {
"type": "Property",
"id": 1299,
"name": "index",
"comment": null
}, {
"type": "Property",
"id": 1307,
"name": "_modCount",
"comment": null
}, {
"type": "Property",
"id": 1314,
"name": "_index",
"comment": null
}, {
"type": "Property",
"id": 1320,
"name": "_map",
"comment": null
}, {
"type": "Property",
"id": 1326,
"name": "_backingEntry",
"comment": null
}, {
"type": "Property",
"id": 1332,
"name": "_currentEntry",
"comment": null
}, {
"type": "Method",
"id": 1399,
"name": "_getNextEntry",
"comment": null,
"params": [],
"supers": []
}, {
"type": "Method",
"id": 1450,
"name": "_getPrevEntry",
"comment": null,
"params": [],
"supers": []
}, {
"type": "Method",
"id": 1529,
"name": "next",
"comment": null,
"params": [],
"supers": []
}, {
"type": "Method",
"id": 1606,
"name": "prev",
"comment": null,
"params": [],
"supers": []
}, {
"type": "Method",
"id": 1656,
"name": "moveToStart",
"comment": null,
"params": [],
"supers": []
}, {
"type": "Method",
"id": 1709,
"name": "moveToEnd",
"comment": null,
"params": [],
"supers": []
}, {
"type": "Method",
"id": 1754,
"name": "put",
"comment": null,
"params": ["value"],
"supers": []
}, {
"type": "Method",
"id": 1754,
"name": "set",
"comment": null,
"params": ["value"],
"supers": []
}, {
"type": "Method",
"id": 1852,
"name": "remove",
"comment": null,
"params": [],
"supers": []
}, {
"type": "Method",
"id": 1852,
"name": "delete",
"comment": null,
"params": [],
"supers": []
}]
},
"Entry": {
"type": "Class",
"id": 1903,
"name": "Entry",
"comment": null,
"bases": [],
"params": ["key", "value", "next"],
"statics": [],
"members": [{
"type": "Property",
"id": 1878,
"name": "key",
"comment": null
}, {
"type": "Property",
"id": 1884,
"name": "value",
"comment": null
}, {
"type": "Property",
"id": 1890,
"name": "next",
"comment": null
}, {
"type": "Property",
"id": 1899,
"name": "nextEntry",
"comment": null
}, {
"type": "Property",
"id": 1900,
"name": "prevEntry",
"comment": null
}, {
"type": "Method",
"id": 1989,
"name": "inserted",
"comment": null,
"params": ["map"],
"supers": []
}, {
"type": "Method",
"id": 2103,
"name": "removed",
"comment": null,
"params": ["map"],
"supers": []
}, {
"type": "Method",
"id": 2204,
"name": "accessed",
"comment": null,
"params": ["map"],
"supers": []
}]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment