mapperScopeTable function
Implementation
String mapperScopeTable(ScopeTable value) {
switch (value) {
case ScopeTable.col:
return 'col';
case ScopeTable.colgroup:
return 'colgroup';
case ScopeTable.row:
return 'row';
case ScopeTable.rowgroup:
return 'rowgroup';
}
}