chrome-devtools-frontend
Version:
Chrome DevTools UI
16 lines (12 loc) • 542 B
text/typescript
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import {type FormattedContentBuilder} from './FormattedContentBuilder.js';
export class IdentityFormatter {
constructor(private builder: FormattedContentBuilder) {
}
format(text: string, lineEndings: number[], fromOffset: number, toOffset: number): void {
const content = text.substring(fromOffset, toOffset);
this.builder.addToken(content, fromOffset);
}
}