Skip to content

Commit dca2de0

Browse files
committed
Add pages for new contexts
1 parent 791a777 commit dca2de0

File tree

4 files changed

+34
-1
lines changed

4 files changed

+34
-1
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
sidebar_position: 7
3+
---
4+
5+
import SchemaViewer from "@site/src/components/SchemaViewer";
6+
7+
# Frame contexts
8+
9+
<SchemaViewer
10+
schema={{ id: "schema:ethdebug/format/program/context/frame" }}
11+
/>
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
sidebar_position: 7
3+
---
4+
5+
import SchemaViewer from "@site/src/components/SchemaViewer";
6+
7+
# Gather multiple contexts
8+
9+
<SchemaViewer
10+
schema={{ id: "schema:ethdebug/format/program/context/gather" }}
11+
/>
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
sidebar_position: 7
3+
---
4+
5+
import SchemaViewer from "@site/src/components/SchemaViewer";
6+
7+
# Pick one of several contexts
8+
9+
<SchemaViewer
10+
schema={{ id: "schema:ethdebug/format/program/context/pick" }}
11+
/>

packages/web/src/schemas.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ const programSchemaIndex: SchemaIndex = {
215215
},
216216

217217
...(
218-
["code", "variables", "remark"].map(name => ({
218+
["code", "variables", "remark", "frame", "gather", "pick"].map(name => ({
219219
[`schema:ethdebug/format/program/context/${name}`]: {
220220
href: `/spec/program/context/${name}`
221221
}

0 commit comments

Comments
 (0)