2017-12-20 12:02:45 +00:00
|
|
|
// Copyright 2017 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.
|
|
|
|
|
2021-05-31 22:17:32 +00:00
|
|
|
import { ParseProcessor, ArgumentsProcessor } from "./parse-processor.mjs";
|
2020-09-28 13:50:56 +00:00
|
|
|
|
2021-05-31 22:17:32 +00:00
|
|
|
const params = ArgumentsProcessor.process(arguments);
|
2020-11-10 11:47:40 +00:00
|
|
|
const parseProcessor = new ParseProcessor();
|
2021-06-30 11:17:33 +00:00
|
|
|
await parseProcessor.processLogFile(params.logFileName);
|