chromium/third_party/blink/renderer/core/css/css_math_operator.cc

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

#include "third_party/blink/renderer/core/css/css_math_operator.h"

#include "third_party/blink/renderer/core/css/parser/css_parser_token.h"
#include "third_party/blink/renderer/platform/wtf/text/string_view.h"

namespace blink {

CSSMathOperator ParseCSSArithmeticOperator(const CSSParserToken& token) {}

StringView ToString(CSSMathOperator op) {}

StringView ToRoundingStrategyString(CSSMathOperator op) {}

bool IsComparison(CSSMathOperator op) {}

}  // namespace blink