mirror of
https://github.com/google/blockly.git
synced 2026-01-10 02:17:09 +01:00
* Add annotations to files under core/events * Add annotations to files under core/interfaces * Add annotations to files under core/keyboard_nav * Add annotations to files under core/renderers * Add annotations to files under core/serialization * Add annotations to files under core/theme * Add annotations to files under core/toolbox * Add annotations to files under core/utils * Add annotations to files under core
28 lines
510 B
JavaScript
28 lines
510 B
JavaScript
/**
|
|
* @license
|
|
* Copyright 2020 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview The interface for an AST node location.
|
|
* @author samelh@google.com (Sam El-Husseini)
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
/**
|
|
* The interface for an AST node location.
|
|
* @namespace Blockly.IASTNodeLocation
|
|
*/
|
|
goog.module('Blockly.IASTNodeLocation');
|
|
|
|
/**
|
|
* An AST node location interface.
|
|
* @interface
|
|
* @alias Blockly.IASTNodeLocation
|
|
*/
|
|
const IASTNodeLocation = function() {};
|
|
|
|
exports = IASTNodeLocation;
|