WhileyCompiler icon indicating copy to clipboard operation
WhileyCompiler copied to clipboard

LambdaAccess with Template Parameters

Open DavePearce opened this issue 5 years ago • 0 comments

There seems to be a problem parsing lambda accesses like so:

return {
      ...,
        // Action Processor (dummy)
        process: &io::processor<State>
    }

There are two essential issues. Firstly, we cannot parse with explicit template parameters; Secondly, it doesn't infer the template when we don't provide it.

DavePearce avatar Apr 22 '20 21:04 DavePearce