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 e9a2985 commit 22a69c9Copy full SHA for 22a69c9
packages/format/src/types/program/context.ts
@@ -96,7 +96,7 @@ export namespace Context {
96
gather: Context[];
97
}
98
99
- export const isGather = (value: unknown): value is Pick =>
+ export const isGather = (value: unknown): value is Gather =>
100
typeof value === "object" && !!value &&
101
"gather" in value && value.gather instanceof Array &&
102
value.gather.every(isContext);
schemas/program/context/frame.schema.yaml
@@ -12,10 +12,6 @@ properties:
12
frame:
13
title: Relevant compilation frame
14
type: string
15
- items:
16
- $ref: "schema:ethdebug/format/program/context"
17
- minItems: 2
18
- additionalItems: false
19
required:
20
- frame
21
0 commit comments