mirror of
https://github.com/github/codeql-action.git
synced 2025-12-27 09:40:17 +08:00
Co-authored-by: Andrew Eisenberg <aeisenberg@github.com> Co-authored-by: Henry Mercer <henrymercer@github.com>
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;
|