comparison graal/com.oracle.truffle.api/src/com/oracle/truffle/api/debug/DefaultDebugManager.java @ 14906:f3a5036cc13c

javadoc fixes javadoc has become stricter in jdk8
author Bernhard Urban <bernhard.urban@jku.at>
date Mon, 31 Mar 2014 20:51:09 +0200
parents 3f27e57439ed
children 64dcb92ee75a
comparison
equal deleted inserted replaced
14905:b7afc71535d3 14906:f3a5036cc13c
44 private final Set<Source> loadedSources = new HashSet<>(); 44 private final Set<Source> loadedSources = new HashSet<>();
45 45
46 private Source beingLoaded = null; 46 private Source beingLoaded = null;
47 47
48 /** 48 /**
49 * Map: SourceSection ==> probe chain associated with that source section in an AST. 49 * Map: SourceSection ==&gt; probe chain associated with that source section in an AST.
50 */ 50 */
51 private final Map<SourceSection, ProbeChain> srcToProbeChain = new HashMap<>(); 51 private final Map<SourceSection, ProbeChain> srcToProbeChain = new HashMap<>();
52 52
53 /** 53 /**
54 * Map: Source lines ==> probe chains associated with source sections starting on the line. 54 * Map: Source lines ==&gt; probe chains associated with source sections starting on the line.
55 */ 55 */
56 private final Map<SourceLineLocation, Set<ProbeChain>> lineToProbeChains = new HashMap<>(); 56 private final Map<SourceLineLocation, Set<ProbeChain>> lineToProbeChains = new HashMap<>();
57 57
58 private final ExecutionContext context; 58 private final ExecutionContext context;
59 59