Accept namespace for method names.
dirtyhenry opened this issue · 1 comments
dirtyhenry commented
For method defined in a namespace (let's say Bar.foo
), the method appears as Bar
only in the documentation.
For instance, for:
Bar.foo = (arg1) ->
console.debug arg1
The documentation for the file will appear as:
~ (void) Bar(arg1)
instead of
~ (void) Bar.foo(arg1)
inossidabile commented
Yes. Because there's no such thing as a "method namespace". If you refer to mixin – you should use the syntax given in README samples. Same goes to class. What you provide as instance is a meta-magical modification of something that's defined somewhere else. Codo can't support it.