- Complete React app with 7 developer tools - JSON Tool with visual structured editor - Serialize Tool with visual structured editor - URL, Base64, CSV/JSON, Beautifier, Diff tools - Responsive navigation with dropdown menu - Dark/light mode toggle - Mobile-responsive design with sticky header - All tools working with copy/paste functionality
18 lines
552 B
JavaScript
18 lines
552 B
JavaScript
'use strict';
|
|
|
|
const ErrorReportingMixinBase = require('./mixin-base');
|
|
const ErrorReportingPreprocessorMixin = require('./preprocessor-mixin');
|
|
const Mixin = require('../../utils/mixin');
|
|
|
|
class ErrorReportingTokenizerMixin extends ErrorReportingMixinBase {
|
|
constructor(tokenizer, opts) {
|
|
super(tokenizer, opts);
|
|
|
|
const preprocessorMixin = Mixin.install(tokenizer.preprocessor, ErrorReportingPreprocessorMixin, opts);
|
|
|
|
this.posTracker = preprocessorMixin.posTracker;
|
|
}
|
|
}
|
|
|
|
module.exports = ErrorReportingTokenizerMixin;
|