mirror of
https://github.com/github/codeql-action.git
synced 2026-05-14 23:30:14 +00:00
14 lines
419 B
JavaScript
14 lines
419 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.GeneratorBase = void 0;
|
|
class GeneratorBase {
|
|
constructor(symbols, registry, imports, comments, interpreter) {
|
|
this.symbols = symbols;
|
|
this.registry = registry;
|
|
this.imports = imports;
|
|
this.comments = comments;
|
|
this.interpreter = interpreter;
|
|
}
|
|
}
|
|
exports.GeneratorBase = GeneratorBase;
|