We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a3a6dd commit 0f476d9Copy full SHA for 0f476d9
design/mvp/CanonicalABI.md
@@ -506,7 +506,7 @@ arbitrarily interleave.)
506
def trap_if_on_the_stack(self, inst):
507
c = self.caller
508
while c is not None:
509
- trap_if(c.inst is int)
+ trap_if(c.inst is inst)
510
c = c.caller
511
```
512
By analyzing a linked component DAG, an optimized implementation can avoid the
design/mvp/canonical-abi/definitions.py
@@ -417,7 +417,7 @@ async def enter(self):
417
418
419
420
421
422
423
def create_borrow(self):
0 commit comments