Code contexts
- Explore
- View source
- Playground
Loading ....
- YAML
- JSON
ethdebug/format/program/context/code
$schema: "https://json-schema.org/draft/2020-12/schema"
$id: "schema:ethdebug/format/program/context/code"
title: ethdebug/format/program/context/code
description: |
Information about the source code range corresponding to this point in
machine execution.
type: object
properties:
code:
$ref: "schema:ethdebug/format/materials/source-range"
required:
- code
examples:
- code:
source:
id: 5
range:
offset: 68
length: 16
ethdebug/format/program/context/code
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schema:ethdebug/format/program/context/code",
"title": "ethdebug/format/program/context/code",
"description": "Information about the source code range corresponding to this point in\nmachine execution.\n",
"type": "object",
"properties": {
"code": {
"$ref": "schema:ethdebug/format/materials/source-range"
}
},
"required": [
"code"
],
"examples": [
{
"code": {
"source": {
"id": 5
},
"range": {
"offset": 68,
"length": 16
}
}
}
]
}
Loading...