All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.es.Literal.mjs Maven / Gradle / Ivy

Go to download

Tools necessary for parsing stage of ApiDOM, specifically for syntactic analysis.

The newest version!
import Node from "./Node.mjs";
class Literal extends Node {
  static type = 'literal';
  value;
  constructor({
    value,
    ...rest
  } = {}) {
    super({
      ...rest
    });
    this.value = value;
  }
}
export default Literal;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy