mirror of
https://github.com/S2-/minifyfromhtml.git
synced 2025-08-03 12:20:04 +02:00
32 lines
467 B
JavaScript
32 lines
467 B
JavaScript
"use strict";
|
|
|
|
const NotImplementedError = Error("NotImplementedError");
|
|
|
|
class Collapser {
|
|
isInitTypeValid() {
|
|
throw NotImplementedError;
|
|
}
|
|
|
|
isExpressionTypeValid() {
|
|
throw NotImplementedError;
|
|
}
|
|
|
|
getExpressionChecker() {
|
|
throw NotImplementedError;
|
|
}
|
|
|
|
extractAssignment() {
|
|
throw NotImplementedError;
|
|
}
|
|
|
|
addSuccessfully() {
|
|
throw NotImplementedError;
|
|
}
|
|
|
|
isSizeSmaller() {
|
|
return true;
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = Collapser; |