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

[mono] Add some WASM AOT documention. #55498

Merged
merged 1 commit into from
Jul 12, 2021
Merged

Conversation

vargaz
Copy link
Contributor

@vargaz vargaz commented Jul 12, 2021

No description provided.

Comment on lines 56 to 59
```
vt_entry = vtable [slot];
if (vt_entry == null)
vt_entry = init_vt_entry ();
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit, with:

Suggested change
```
vt_entry = vtable [slot];
if (vt_entry == null)
vt_entry = init_vt_entry ();
```c
vt_entry = vtable [slot];
if (vt_entry == null)
vt_entry = init_vt_entry ();

it will syntax highlight the code:

vt_entry = vtable [slot];
if (vt_entry == null)
	vt_entry = init_vt_entry ();

@vargaz vargaz merged commit 4156116 into dotnet:main Jul 12, 2021
@vargaz vargaz deleted the wasm-aot-doc branch July 12, 2021 17:59
@ghost ghost locked as resolved and limited conversation to collaborators Aug 11, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants