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

[FUSE] Missing error on nonexistent method #9828

Closed
ryzngard opened this issue Jan 17, 2024 · 1 comment · Fixed by #9883
Closed

[FUSE] Missing error on nonexistent method #9828

ryzngard opened this issue Jan 17, 2024 · 1 comment · Fixed by #9883
Assignees
Labels
bug Something isn't working New Feature: Fuse
Milestone

Comments

@ryzngard
Copy link
Contributor

2 from #8202 (comment)

Missing error for missing callback. OnCopy does not exist

<button class="btn btn-primary" @onclick="IncrementCount" @oncontextmenu="OnCopy">Click me</button>

@code {
    private int currentCount = 0;

    private void IncrementCount()
    {
        currentCount++;
    }
}
@ryzngard ryzngard added bug Something isn't working New Feature: Fuse labels Jan 17, 2024
@ryzngard ryzngard self-assigned this Jan 17, 2024
@ghost ghost added the untriaged label Jan 17, 2024
@ryzngard ryzngard added this to the 17.10 P1 milestone Jan 18, 2024
@ghost ghost removed the untriaged label Jan 18, 2024
@ryzngard ryzngard assigned chsienki and unassigned ryzngard Jan 24, 2024
@ryzngard
Copy link
Contributor Author

Figured this out: we're missing source mappings from the compiler here. Screenshot where <# shows source mappings available

image

Here is what is in main

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working New Feature: Fuse
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants