Removing logging, cleanup

This commit is contained in:
Knut Sveidqvist
2022-04-30 15:54:03 +02:00
parent 3baf31695e
commit e917347b81
6 changed files with 1604 additions and 12 deletions

View File

@@ -263,9 +263,9 @@ statement
| cssClassStatement
| directive
| direction
| acc_title acc_title_value { console.log('acc_title');$$=$2.trim();yy.setTitle($$); }
| acc_descr acc_descr_value { console.log('acc_descr');$$=$2.trim();yy.setAccDescription($$); }
| acc_descr_multiline_value { console.log('acc_descr_multiline_value');$$=$1.trim();yy.setAccDescription($$); }
| acc_title acc_title_value { $$=$2.trim();yy.setTitle($$); }
| acc_descr acc_descr_value { $$=$2.trim();yy.setAccDescription($$); }
| acc_descr_multiline_value { $$=$1.trim();yy.setAccDescription($$); }
;
classStatement