MCPcopy Index your code
hub / github.com/clojure/clojure / addAttributes

Method addAttributes

src/jvm/clojure/asm/Attribute.java:289–297  ·  view source on GitHub ↗
(final Attribute attributeList)

Source from the content-addressed store, hash-verified

287 private Attribute[] data = new Attribute[SIZE_INCREMENT];
288
289 void addAttributes(final Attribute attributeList) {
290 Attribute attribute = attributeList;
291 while (attribute != null) {
292 if (!contains(attribute)) {
293 add(attribute);
294 }
295 attribute = attribute.nextAttribute;
296 }
297 }
298
299 Attribute[] toArray() {
300 Attribute[] result = new Attribute[size];

Callers 3

Implementers 1

APersistentSetsrc/jvm/clojure/lang/APersistentSet.ja

Calls 2

containsMethod · 0.95
addMethod · 0.95

Tested by

no test coverage detected