chromium/v8/src/date/dateparser.cc

// Copyright 2011 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "src/date/dateparser.h"

#include "src/objects/objects-inl.h"
#include "src/strings/char-predicates-inl.h"

namespace v8 {
namespace internal {

bool DateParser::DayComposer::Write(double* output) {}

bool DateParser::TimeComposer::Write(double* output) {}

bool DateParser::TimeZoneComposer::Write(double* output) {}

const int8_t
    DateParser::KeywordTable::array[][DateParser::KeywordTable::kEntrySize] =;

// We could use perfect hashing here, but this is not a bottleneck.
int DateParser::KeywordTable::Lookup(const uint32_t* pre, int len) {}

int DateParser::ReadMilliseconds(DateToken token) {}

}  // namespace internal
}  // namespace v8