Package com.sun.tools.javac.util

Examples of com.sun.tools.javac.util.IntHashTable


@SuppressWarnings("unchecked"// Unsafe reflection.
static Set<Entry<JCTree, Integer>> getEntries(EndPosTable table) {
   if (isEmpty(table)) {
     return Collections.emptySet();
   }
   IntHashTable rawMap = getMap(table);
   Set<Map.Entry<JCTree, Integer>> entries = new HashSet<>();
   Object[] objs;
   int[] ints;
   try {
     objs = (Object[]) OBJS_FIELD.get(rawMap);
View Full Code Here

TOP

Related Classes of com.sun.tools.javac.util.IntHashTable

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.