chromium/third_party/blink/renderer/core/css/parser/css_parser_token_range.cc

// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/351564777): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif

#include "third_party/blink/renderer/core/css/parser/css_parser_token_range.h"

#include "third_party/blink/renderer/platform/wtf/static_constructors.h"
#include "third_party/blink/renderer/platform/wtf/text/string_builder.h"

namespace blink {

DEFINE_GLOBAL();

void CSSParserTokenRange::InitStaticEOFToken() {}

CSSParserTokenRange CSSParserTokenRange::MakeSubRange(
    const CSSParserToken* first,
    const CSSParserToken* last) const {}

CSSParserTokenRange CSSParserTokenRange::ConsumeBlock() {}

void CSSParserTokenRange::ConsumeComponentValue() {}

// https://www.w3.org/TR/css-syntax-3/#serialization
bool NeedsInsertedComment(const CSSParserToken& a, const CSSParserToken& b) {}

String CSSParserTokenRange::Serialize() const {}

}  // namespace blink