8031212: doclint incorrectly rejects some @see tags in javadoc comments

Reviewed-by: vromero
This commit is contained in:
Jonathan Gibbons 2014-01-27 16:07:32 -08:00
parent 1bb2245091
commit 478d2876a5
2 changed files with 9 additions and 7 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2012, 2014, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -1173,8 +1173,10 @@ public class DocCommentParser {
DCText string = quotedString();
if (string != null) {
skipWhitespace();
if (ch == '@')
if (ch == '@'
|| ch == EOI && bp == buf.length - 1) {
return m.at(pos).See(List.<DCTree>of(string));
}
}
break;

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2012, 2014, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -23,7 +23,7 @@
/*
* @test
* @bug 7021614
* @bug 7021614 8031212
* @summary extend com.sun.source API to support parsing javadoc comments
* @build DocCommentTester
* @run main DocCommentTester SeeTest.java
@ -41,9 +41,9 @@ DocComment[DOC_COMMENT, pos:1
Text[TEXT, pos:1, abc.]
body: empty
block tags: 1
Erroneous[ERRONEOUS, pos:7
code: compiler.err.dc.unexpected.content
body: @see_"String"
See[SEE, pos:7
reference: 1
Text[TEXT, pos:12, "String"]
]
]
*/