Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Optional chaining for provider with function call results in an SyntaxError #612

Open
Ventrae opened this issue Sep 12, 2024 · 0 comments
Open
Labels
bug Something isn't working

Comments

@Ventrae
Copy link

Ventrae commented Sep 12, 2024

Optional chaining for provider with function call results in an error:

SyntaxError: Invalid left-hand side in assignment

example:

@rpc.controller(AppNotificationRPC).strictSerialization(false).logValidationErrors(true)
class MyController {
    constructor (private myService: MyService) { } 

    @rpc.action()
    doSomething(){
        this.myService?.itsFunction().catch();
    }
}

perhaps solution is converting it first to a temp variable, like:

(p1 = this.myService?.itsFunction, p1.Ω = [...], p1)(...)
@marcj marcj added the bug Something isn't working label Sep 12, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants