選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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. }