MCPcopy Create free account
hub / github.com/ReadyTalk/avian / parseAnnotationTable

Method parseAnnotationTable

classpath/avian/Classes.java:162–172  ·  view source on GitHub ↗
(ClassLoader loader,
                                               Object pool,
                                               InputStream in)

Source from the content-addressed store, hash-verified

160 }
161
162 private static Object[] parseAnnotationTable(ClassLoader loader,
163 Object pool,
164 InputStream in)
165 throws IOException
166 {
167 Object[] table = new Object[read2(in)];
168 for (int i = 0; i < table.length; ++i) {
169 table[i] = parseAnnotation(loader, pool, in);
170 }
171 return table;
172 }
173
174 private static void parseAnnotationTable(ClassLoader loader,
175 Addendum addendum)

Callers 1

linkMethod · 0.95

Calls 3

parseAnnotationMethod · 0.95
initCauseMethod · 0.80
read2Method · 0.45

Tested by

no test coverage detected