You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

parameter.js 346B

1234567891011121314151617
  1. export class Param
  2. {
  3. constructor(code,selectors)
  4. {
  5. // br-removecolumn
  6. this.code = code;
  7. // br-removecolumn-2
  8. this.codeFull='';
  9. // true
  10. this.codeHaveVars;
  11. // table
  12. this.selectors = selectors;
  13. // <table></table>,<table></table>...]
  14. this.targets = [];
  15. }
  16. }