UNPKG

silegismg-interpretador-articulacao

Version:
35 lines (34 loc) 1.5 kB
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); /* Copyright 2019 Assembleia Legislativa de Minas Gerais * * This file is part of Interpretador-Articulacao. * * Interpretador-Articulacao is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, version 3. * * Interpretador-Articulacao is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with Interpretador-Articulacao. If not, see <http://www.gnu.org/licenses/>. */ const agrupadores_1 = require("../../dispositivos/agrupadores"); const ParserLinha_1 = __importDefault(require("./ParserLinha")); class ParserSecao extends ParserLinha_1.default { constructor() { super(/^\s*SE[ÇC][ÃA]O\s*([IXVDLM]+(?:-[a-z])?)(?:\s*[-–]\s*(.+))?/i); } onMatch(contexto, m) { const item = new agrupadores_1.Secao(m[1], m[2] || ''); contexto.adicionar([agrupadores_1.Capitulo, agrupadores_1.Titulo], item); return item; } } exports.default = ParserSecao;