Stay organized with collections
Save and categorize content based on your preferences.
blockly > ASTNode > createInputNode
Creates an AST node pointing to an input. Stores the input connection as the location.
Signature:
static createInputNode(input: Input): ASTNode | null;
Parameters
Parameter |
Type |
Description |
input |
Input |
The input used to create an AST node. |
Returns:
ASTNode | null
An AST node pointing to a input.
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-09-18 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-09-18 UTC."],[[["The `ASTNode.createInputNode()` method is a static method that creates an AST node associated with a specific input on a block."],["It takes an `Input` object as its argument and returns an `ASTNode` object that points to that input, or `null` if the input is invalid."],["The location of the node is stored as the input connection."]]],["The `createInputNode()` method generates an Abstract Syntax Tree (AST) node that references an input. It accepts an `Input` object as a parameter and stores the input connection as the node's location. The method returns either an `ASTNode` object, representing the input, or `null` if the node cannot be created. This AST node is designed to point directly to an input.\n"]]