Parses PADS Layout ASCII netlist files (.asc).

Constructors

Methods

Constructors

  • Creates a new PADSParser instance.

    Parameters

    • partialParsing: boolean = false

      Whether to enable partial parsing mode. In partial parsing mode the parser will not throw errors, but it will collect them in the errors array and attempt to continue parsing.

    Returns PADSParser

Methods

  • Parses a PADS Layout ASCII netlist from a string.

    Parameters

    • data: string

      The PADS netlist data as a string.

    Returns Promise<PADSNetlist>

    A promise that resolves to the parsed PADSNetlist object.

    ParserError if parsing fails and partialParsing is false.