JarrettBillingsley / Croc

Croc is an extensible extension language in the vein of Lua, which also wishes it were a standalone language. Also it's fun.
http://www.croc-lang.org
79 stars 12 forks source link

Docs don't seem to be attached to class methods with decorators #103

Closed JarrettBillingsley closed 10 years ago

JarrettBillingsley commented 10 years ago

Ex:

local id = \x -> x

/// boop
class A
{
    /// Docs!
    @id
    function f() {}
}

Not sure what part is responsible for this, or if it's ONLY class methods that suffer this.