Bug 9764 – Ddoc: Ddoc file name is incorrectly emphasized
Status
RESOLVED
Resolution
FIXED
Severity
regression
Priority
P2
Component
dmd
Product
D
Version
D2
Platform
All
OS
All
Creation time
2013-03-19T23:41:00Z
Last change time
2013-03-22T13:05:22Z
Keywords
ddoc, pull
Assigned to
nobody
Creator
k.hara.pg
Comments
Comment #0 by k.hara.pg — 2013-03-19T23:41:57Z
In http://dlang.org/attribute :
attribute declaration; // affects the declaration
attribute: // affects all declarations until the end of
// the current scope
declaration;
declaration;
...
attribute { // affects all declarations in the block
declaration;
declaration;
...
}
"attribute" word is incorrectly underlined.
Test case:
test.dd
Ddoc
Check test document.
----
// Check test comment.
test(); <----- "test" is underlined
----