MCPcopy Create free account
hub / github.com/Hiro420/NikkeTools / push

Method push

UnLuac/src/unluac/util/Stack.java:30–35  ·  view source on GitHub ↗
(T item)

Source from the content-addressed store, hash-verified

28 }
29
30 public void push(T item) {
31 if (data.size() > 65536) {
32 throw new IndexOutOfBoundsException("Trying to push more than 65536 items!");
33 }
34 data.add(item);
35 }
36
37 public int size() {
38 return data.size();

Callers 4

resolve_elseMethod · 0.95
find_if_breakMethod · 0.95
processSequenceMethod · 0.95
resolve_hangerMethod · 0.80

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected