mirror of
https://github.com/google/blockly.git
synced 2026-01-08 17:40:09 +01:00
24 lines
423 B
JavaScript
24 lines
423 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';
|
|
|
|
goog.module('Blockly.IASTNodeLocation');
|
|
goog.module.declareLegacyNamespace();
|
|
|
|
/**
|
|
* An AST node location interface.
|
|
* @interface
|
|
*/
|
|
const IASTNodeLocation = function() {};
|
|
|
|
exports = IASTNodeLocation;
|