- ✅ Ticket 1.1: Estructura Clean Architecture en backend - ✅ Ticket 1.2: Schemas Zod compartidos - ✅ Ticket 1.3: Refactorización drugs.ts (1362 → 8 archivos modulares) - ✅ Ticket 1.4: Refactorización procedures.ts (3583 → 6 archivos modulares) - ✅ Ticket 1.5: Eliminación de duplicidades (~50 líneas) Cambios principales: - Creada estructura Clean Architecture en backend/src/ - Schemas Zod compartidos en backend/src/shared/schemas/ - Refactorización modular de drugs y procedures - Utilidades genéricas en src/utils/ (filter, validation) - Eliminados scripts obsoletos y documentación antigua - Corregidos errores: QueryClient, import test-error-handling - Build verificado y funcionando correctamente
48 lines
943 B
JavaScript
48 lines
943 B
JavaScript
import { Ident } from '../../tokenizer/index.js';
|
|
|
|
export const name = 'Nth';
|
|
export const structure = {
|
|
nth: ['AnPlusB', 'Identifier'],
|
|
selector: ['SelectorList', null]
|
|
};
|
|
|
|
export function parse() {
|
|
this.skipSC();
|
|
|
|
const start = this.tokenStart;
|
|
let end = start;
|
|
let selector = null;
|
|
let nth;
|
|
|
|
if (this.lookupValue(0, 'odd') || this.lookupValue(0, 'even')) {
|
|
nth = this.Identifier();
|
|
} else {
|
|
nth = this.AnPlusB();
|
|
}
|
|
|
|
end = this.tokenStart;
|
|
this.skipSC();
|
|
|
|
if (this.lookupValue(0, 'of')) {
|
|
this.next();
|
|
|
|
selector = this.SelectorList();
|
|
end = this.tokenStart;
|
|
}
|
|
|
|
return {
|
|
type: 'Nth',
|
|
loc: this.getLocation(start, end),
|
|
nth,
|
|
selector
|
|
};
|
|
}
|
|
|
|
export function generate(node) {
|
|
this.node(node.nth);
|
|
if (node.selector !== null) {
|
|
this.token(Ident, 'of');
|
|
this.node(node.selector);
|
|
}
|
|
}
|