Skip to content

Commit 6f2810b

Browse files
committed
Initial setup and overview for the JS Primitive Builtins Proposal.
1 parent 1041527 commit 6f2810b

File tree

4 files changed

+818
-5
lines changed

4 files changed

+818
-5
lines changed

.github/workflows/ci-interpreter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ jobs:
3131
- name: Build interpreter
3232
run: cd interpreter && opam exec make
3333
- name: Run tests
34-
run: cd interpreter && opam exec make JS=node ci
34+
run: cd interpreter && opam exec make ci

README.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
1-
[![CI for specs](https://github.com/WebAssembly/spec/actions/workflows/ci-spec.yml/badge.svg)](https://github.com/WebAssembly/spec/actions/workflows/ci-spec.yml)
2-
[![CI for interpreter & tests](https://github.com/WebAssembly/spec/actions/workflows/ci-interpreter.yml/badge.svg)](https://github.com/WebAssembly/spec/actions/workflows/ci-interpreter.yml)
1+
[![CI for specs](https://github.com/WebAssembly/js-primitive-builtins/actions/workflows/ci-spec.yml/badge.svg)](https://github.com/WebAssembly/js-primitive-builtins/actions/workflows/ci-spec.yml)
2+
[![CI for interpreter & tests](https://github.com/WebAssembly/js-primitive-builtins/actions/workflows/ci-interpreter.yml/badge.svg)](https://github.com/WebAssembly/js-primitive-builtins/actions/workflows/ci-interpreter.yml)
3+
4+
# JS Primitive Builtins Proposal for WebAssembly
5+
6+
This repository is a clone of [github.com/WebAssembly/spec/](https://github.com/WebAssembly/spec/).
7+
It is meant for discussion, prototype specification and implementation of a proposal to
8+
add support for additional JS builtins to the JS embedding of WebAssembly.
9+
10+
* See the [overview](proposals/js-primitive-builtins/Overview.md) for a summary of the proposal.
11+
12+
* See the [modified spec](https://webassembly.github.io/js-primitive-builtins/) for details.
13+
14+
Original `README` from upstream repository follows...
315

416
# spec
517

document/core/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,10 @@
6666
logo = 'static/webassembly.png'
6767

6868
# The name of the GitHub repository this resides in
69-
repo = 'spec'
69+
repo = 'js-primitive-builtins'
7070

7171
# The name of the proposal it represents, if any
72-
proposal = ''
72+
proposal = 'js-primitive-builtins'
7373

7474
# The draft version string (clear out for release cuts)
7575
draft = ' (Draft ' + date.today().strftime("%Y-%m-%d") + ')'

0 commit comments

Comments
 (0)