aboutsummaryrefslogtreecommitdiff
path: root/AstSemantics.md
diff options
context:
space:
mode:
authorJF Bastien <jfb@chromium.org>2015-06-04 13:09:12 -0700
committerJF Bastien <jfb@chromium.org>2015-06-04 13:09:12 -0700
commite5ae3cf844ded15daada4dbaf4afff90ffee4c05 (patch)
tree79ba2afb0ce5c05396b22f3d146f65261f5fcfef /AstSemantics.md
parentcd35f9b39f4d8bc186ea8b8fb889dc451113b8d7 (diff)
downloadnanowasm-design-e5ae3cf844ded15daada4dbaf4afff90ffee4c05.tar.gz
Refactor polyfill quite a bit.
Diffstat (limited to 'AstSemantics.md')
-rw-r--r--AstSemantics.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/AstSemantics.md b/AstSemantics.md
index ee16571..2adb7b8 100644
--- a/AstSemantics.md
+++ b/AstSemantics.md
@@ -248,7 +248,7 @@ immediate use. The following primitives provide AST nodes that express
control flow and thus allow more opportunities to build bigger expression trees
and further reduce `SetLocal`/`GetLocal` usage (which constitute 30-40% of total
bytes in the polyfill prototype). Additionally, these primitives are useful
-building blocks for WebAssembly-generators (including the asm.js polyfill).
+building blocks for WebAssembly-generators (including the JavaScript polyfill).
* Comma - evaluate and ignore the result of the first operand, evaluate and return the second operand
* Conditional - basically ternary ?: operator