This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
WASM Local-blob override #7317
WASM Local-blob override #7317
Changes from 66 commits
aa4a698
2119c33
ad6a811
087e797
77134e1
f030c7e
770d825
a54ae38
0cf1263
c67b981
7a83168
b04a260
7704458
f80b33c
d1254c5
ed19163
3feed25
bdd847d
73efeb6
2675653
474c442
8a51780
a9f8e85
2aab45e
cd7a3e3
2895bc4
f9fac2b
0e4e972
abc48f7
8f4c857
32bd6db
6a50eee
a0c1f55
f940c71
26975d3
8433731
3e8d18f
d14e1d7
7b99336
626e453
fed565c
5812b10
d40d5bb
693f506
a2a41de
824b24e
0506100
82e2683
554f68e
2ddf6a0
18589c7
5781c1e
1401b18
37266bf
1ef18ab
551f3ed
54969dc
25dc83f
7d3ee25
e654dbe
665e20c
5a91f0d
b2b9ba5
103f149
a84dcbf
1ac97cb
6cc0a8f
8503689
8fc367d
f90db2f
1b355b7
427d9ae
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a terminology query - should we use
override
vsoverwrite
everywhere? Seems like overwrite is used predominantly but I think override is a better choice - either way good to be consistent, unless actually there is some difference in meaning - in which case perhaps choose another word, so that the two concepts are more obviously distinct in their name.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I like
override
better too (and may be the one to blame for the inconsistent docs here, not sure) but kept my mouth shut for fear of nitpicking, but as you opened up the can... :)"Overwrite" is more concrete than "override" and in some sense we are writing something over what was previously there. We're "clobbering" the on-chain runtime. On the other hand "override" reflects more on what the actual outcome of the operation is: taking control over the normal flow of a process (picking the runtime) and intervene. It's very close to the dictionary definition of "override": "interrupt the action of (an automatic device), typically in order to take manual control.".
Either works. I like "override" better. Andrews call.