/** * @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;