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

Method write

src/jvm/clojure/asm/Attribute.java:153–160  ·  view source on GitHub ↗

Returns the byte array form of the content of this attribute. The 6 header bytes (attribute_name_index and attribute_length) must not be added in the returned ByteVector. @param classWriter the class to which this attribute must be added. This parameter can be used to add the items that

(
      final ClassWriter classWriter,
      final byte[] code,
      final int codeLength,
      final int maxStack,
      final int maxLocals)

Source from the content-addressed store, hash-verified

151 * @return the byte array form of this attribute.
152 */
153 protected ByteVector write(
154 final ClassWriter classWriter,
155 final byte[] code,
156 final int codeLength,
157 final int maxStack,
158 final int maxLocals) {
159 return new ByteVector(content);
160 }
161
162 /**
163 * Returns the number of attributes of the attribute list that begins with this attribute.

Callers 11

computeAttributesSizeMethod · 0.95
putAttributesMethod · 0.95
mainMethod · 0.80
writeSMAPMethod · 0.80
writeClassFileMethod · 0.80
printMethod · 0.80
printInnerSeqMethod · 0.80
formatAestheticMethod · 0.80
formatStandardMethod · 0.80
doFormatMethod · 0.80
readStreamMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected