META-INF.dirigible.dev-tools.javascript_metadata.JavaScriptMetadata.js Maven / Gradle / Ivy
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import * as Common from '../common/common.js'; // eslint-disable-line no-unused-vars
import {NativeFunctions} from './NativeFunctions.js';
/**
* @implements {Common.JavaScriptMetaData.JavaScriptMetaData}
*/
export class JavaScriptMetadataImpl {
constructor() {
/** @type {!Map>>} */
this._uniqueFunctions = new Map();
/** @type {!Map>>>} */
this._instanceMethods = new Map();
/** @type {!Map>>>} */
this._staticMethods = new Map();
for (const nativeFunction of NativeFunctions) {
if (!nativeFunction.receiver) {
this._uniqueFunctions.set(nativeFunction.name, nativeFunction.signatures);
} else if (nativeFunction.static) {
if (!this._staticMethods.has(nativeFunction.receiver)) {
this._staticMethods.set(nativeFunction.receiver, new Map());
}
this._staticMethods.get(nativeFunction.receiver).set(nativeFunction.name, nativeFunction.signatures);
} else {
if (!this._instanceMethods.has(nativeFunction.receiver)) {
this._instanceMethods.set(nativeFunction.receiver, new Map());
}
this._instanceMethods.get(nativeFunction.receiver).set(nativeFunction.name, nativeFunction.signatures);
}
}
}
/**
* @override
* @param {string} name
* @return {?Array>}
*/
signaturesForNativeFunction(name) {
return this._uniqueFunctions.get(name) || null;
}
/**
* @override
* @param {string} name
* @param {string} receiverClassName
* @return {?Array>}
*/
signaturesForInstanceMethod(name, receiverClassName) {
if (!this._instanceMethods.has(receiverClassName)) {
return null;
}
return this._instanceMethods.get(receiverClassName).get(name) || null;
}
/**
* @override
* @param {string} name
* @param {string} receiverConstructorName
* @return {?Array>}
*/
signaturesForStaticMethod(name, receiverConstructorName) {
if (!this._staticMethods.has(receiverConstructorName)) {
return null;
}
return this._staticMethods.get(receiverConstructorName).get(name) || null;
}
}