Sha256: 52fee8652cdbbb699cfb21c47e8f77b0e68db9ab030246deba3ed09aec503179
Contents?: true
Size: 301 Bytes
Versions: 4
Compression:
Stored size: 301 Bytes
Contents
import Node from '../Node.js'; import CompileError from '../../utils/CompileError.js'; export default class ExportNamedDeclaration extends Node { initialise(transforms) { if (transforms.moduleExport) throw new CompileError('export is not supported', this); super.initialise(transforms); } }
Version data entries
4 entries across 4 versions & 1 rubygems