Skip to content

Function Hints #42

@pfreitag

Description

@pfreitag

Currently the function hint attribute is moved to a comment above the function. Both Lucee and ACF prefer that it is in a function argument instead (Which show up in the meta data when you dump the function).

<cffunction name="test" hint="Hint">
    <cfreturn 1>
</cffunction>

Should become:

function test() hint="Hint" {
    return 1;
} 

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions