UNPKG

rflint

Version:

A tool to check style and conventions of Robot Framework project.

13 lines (11 loc) 299 B
#!usr/bin/env node class Table { constructor(parent,name,header,lineNumber) { this.parent = parent; this.name = name; /// table名 this.header = header; this.lineNumber =lineNumber; this.rows = []; } } module.exports = Table;