This is a collection of Intel®’ IA32® Software Developer's Manuals (URL of the day) and AMD' AMD64 Architecture Programmer's Manual together with the related specifications, application notes, white papers, and change logs. The collection aims to keep all available revisions. It was originally created by Michal Necasek, see OS/2 Museum.

If you have a public document, related to the IA32® specifications and missing from the collection, please mail it to me. The content of this URL and all sub-ULRs is available for convenient bulk download by rsync x86docs password "" (empty).

DotAtom - ARM Machine Readable Schema - 2.8

AARCHMRS Schema 2.8

↚ Home

AST.DotAtom object

The AST.DotAtom schema provides a mechanism to reference an element within a complex data structure, as an array of sequential decision-points. This is equivalent to the dotted-object notation in ASL. For example, a DotAtom might refer to the baz element of the bar element in the foo data structure, or to the bar property of the nth element in the foo array:

  • foo.bar.baz
  • foo[n].bar

object

Properties Type Description
_meta Meta
See Meta for more information.
_type
Enum
AST.DotAtom
values
array [
BinaryOp
]

The values of the DotAtom.

Additional Properties
Not Allowed
◊ Required
Properties marked with ◊ are required properties.
Examples
{
    "_type": "AST.DotAtom", 
    "values": [
        {
            "_type": "AST.Identifier", 
            "value": "foo"
        }, 
        {
            "_type": "AST.Identifier", 
            "value": "bar"
        }, 
        {
            "_type": "AST.Identifier", 
            "value": "baz"
        }
    ]
}
{
    "_type": "AST.DotAtom", 
    "values": [
        {
            "_type": "AST.SquareOp", 
            "arguments": [
                {
                    "_type": "AST.Identifier", 
                    "value": "n"
                }
            ], 
            "var": {
                "_type": "AST.Identifier", 
                "value": "foo"
            }
        }, 
        {
            "_type": "AST.Identifier", 
            "value": "bar"
        }
    ]
}

Schema http://json-schema.org/draft-04/schema#

{
  "additionalProperties": false,
  "info": [
    [
      "The $(AST.DotAtom) schema provides a mechanism to reference an element within a ",
      "complex data structure, as an array of sequential decision-points. This is equivalent to the ",
      "dotted-object notation in ASL. For example, a $(~AST.DotAtom) might refer to the baz ",
      "element of the bar element in the foo data structure, or to the bar property of the ",
      "nth element in the foo array:"
    ],
    [
      " - `foo.bar.baz`",
      " - `foo[n].bar`"
    ]
  ],
  "examples": [
    {
      "_type": "AST.DotAtom",
      "values": [
        {
          "_type": "AST.Identifier",
          "value": "foo"
        },
        {
          "_type": "AST.Identifier",
          "value": "bar"
        },
        {
          "_type": "AST.Identifier",
          "value": "baz"
        }
      ]
    },
    {
      "_type": "AST.DotAtom",
      "values": [
        {
          "_type": "AST.SquareOp",
          "arguments": [
            {
              "_type": "AST.Identifier",
              "value": "n"
            }
          ],
          "var": {
            "_type": "AST.Identifier",
            "value": "foo"
          }
        },
        {
          "_type": "AST.Identifier",
          "value": "bar"
        }
      ]
    }
  ],
  "properties": {
    "_meta": {
      "$ref": "../Meta.json"
    },
    "_type": {
      "enum": [
        "AST.DotAtom"
      ]
    },
    "values": {
      "info": [
        "The values of the DotAtom."
      ],
      "type": "array",
      "minItems": 2,
      "items": {
        "$ref": "BinaryOp.json#/definitions/expression"
      }
    }
  },
  "required": [
    "values"
  ],
  "title": "DotAtom",
  "type": "object",
  "$schema": "http://json-schema.org/draft-04/schema#"
}