View | Details | Raw Unified | Return to bug 83693 | Differences between
and this patch

Collapse All | Expand All

(-)buildnotes_jdt-core.html (-3 / +3 lines)
Lines 50-56 Link Here
50
</ul>
50
</ul>
51
51
52
<h3>Problem Reports Fixed</h3>
52
<h3>Problem Reports Fixed</h3>
53
<a href="http://bugs.eclipse.org/bugs/show_bug.cgi?id=83393">83393</a>
53
<a href="http://bugs.eclipse.org/bugs/show_bug.cgi?id=83693">83693</a>
54
[search][javadoc] References to methods/constructors: range does not include parameter lists
55
<br><a href="http://bugs.eclipse.org/bugs/show_bug.cgi?id=83393">83393</a>
54
[1.5][javadoc] reference to vararg method also considers non-array type as correct
56
[1.5][javadoc] reference to vararg method also considers non-array type as correct
55
<br><a href="http://bugs.eclipse.org/bugs/show_bug.cgi?id=83285">83285</a>
57
<br><a href="http://bugs.eclipse.org/bugs/show_bug.cgi?id=83285">83285</a>
56
[javadoc] Javadoc reference to constructor of secondary type has no binding / not found by search
58
[javadoc] Javadoc reference to constructor of secondary type has no binding / not found by search
Lines 170-177 Link Here
170
[search] IOOBE when inlining a method
172
[search] IOOBE when inlining a method
171
<br><a href="http://bugs.eclipse.org/bugs/show_bug.cgi?id=68825">68825</a>
173
<br><a href="http://bugs.eclipse.org/bugs/show_bug.cgi?id=68825">68825</a>
172
[compiler][1.5] detect not-exhaustive enum switches
174
[compiler][1.5] detect not-exhaustive enum switches
173
<br><a href="http://bugs.eclipse.org/bugs/show_bug.cgi?id=83693">83693</a>
174
[1.5][search] References to methods/constructors: do ranges include parameter lists?
175
<br><a href="http://bugs.eclipse.org/bugs/show_bug.cgi?id=81377">81377</a>
175
<br><a href="http://bugs.eclipse.org/bugs/show_bug.cgi?id=81377">81377</a>
176
[1.5][search] Semantics of search for methods with generics
176
[1.5][search] Semantics of search for methods with generics
177
<br><a href="http://bugs.eclipse.org/bugs/show_bug.cgi?id=84944">84944</a>
177
<br><a href="http://bugs.eclipse.org/bugs/show_bug.cgi?id=84944">84944</a>
(-)compiler/org/eclipse/jdt/internal/compiler/parser/JavadocParser.java (+4 lines)
Lines 218-228 Link Here
218
					JavadocAllocationExpression alloc = new JavadocAllocationExpression(this.identifierPositionStack[0]);
218
					JavadocAllocationExpression alloc = new JavadocAllocationExpression(this.identifierPositionStack[0]);
219
					alloc.type = typeRef;
219
					alloc.type = typeRef;
220
					alloc.tagValue = this.tagValue;
220
					alloc.tagValue = this.tagValue;
221
					alloc.sourceEnd = this.scanner.getCurrentTokenEndPosition();
221
					return alloc;
222
					return alloc;
222
				} else {
223
				} else {
223
					JavadocMessageSend msg = new JavadocMessageSend(this.identifierStack[0], this.identifierPositionStack[0]);
224
					JavadocMessageSend msg = new JavadocMessageSend(this.identifierStack[0], this.identifierPositionStack[0]);
224
					msg.receiver = typeRef;
225
					msg.receiver = typeRef;
225
					msg.tagValue = this.tagValue;
226
					msg.tagValue = this.tagValue;
227
					msg.sourceEnd = this.scanner.getCurrentTokenEndPosition();
226
					return msg;
228
					return msg;
227
				}
229
				}
228
			} else {
230
			} else {
Lines 233-243 Link Here
233
					alloc.arguments = expressions;
235
					alloc.arguments = expressions;
234
					alloc.type = typeRef;
236
					alloc.type = typeRef;
235
					alloc.tagValue = this.tagValue;
237
					alloc.tagValue = this.tagValue;
238
					alloc.sourceEnd = this.scanner.getCurrentTokenEndPosition();
236
					return alloc;
239
					return alloc;
237
				} else {
240
				} else {
238
					JavadocMessageSend msg = new JavadocMessageSend(this.identifierStack[0], this.identifierPositionStack[0], expressions);
241
					JavadocMessageSend msg = new JavadocMessageSend(this.identifierStack[0], this.identifierPositionStack[0], expressions);
239
					msg.receiver = typeRef;
242
					msg.receiver = typeRef;
240
					msg.tagValue = this.tagValue;
243
					msg.tagValue = this.tagValue;
244
					msg.sourceEnd = this.scanner.getCurrentTokenEndPosition();
241
					return msg;
245
					return msg;
242
				}
246
				}
243
			}
247
			}

Return to bug 83693