| [#249] | project: scala-doc | priority: low | category: bug | |||||
|---|---|---|---|---|---|---|---|---|
| submitter | assigned to | status | date submitted | |||||
| Erik | Vincent | fixed | 2003-12-04 11:18:02.0 | |||||
| subject | Vals show up as defs | |||||||
| code |
class A {
val foo = 42;
} |
|||||||
| what happened | ...
|
|||||||
| what expected | Foo to show up not as a method but as a val. | |||||||
| [back to overview] | ||||||||
| Martin edited on 2004-01-08 17:19:19.0 |
| There's a STABLE flag in Symbol which indicates that a `def' is really an access function for a `val'. ScalaDoc should test this function. |
| Vincent edited on 2004-01-12 14:11:49.0 |