6548694a82
Fixes a malloc/delete[] mismatch.
This reverts commit b3396cbdca.
Change-Id: I18fe142bc60bedd8af4c588ba4039742e1d34606
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/134570
Reviewed-by: Liam Appelbe <liama@google.com>
Commit-Queue: Ben Konyi <bkonyi@google.com>
32 lines
964 B
C++
32 lines
964 B
C++
// Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
#ifndef RUNTIME_BIN_DARTDEV_UTILS_H_
|
|
#define RUNTIME_BIN_DARTDEV_UTILS_H_
|
|
|
|
#include "platform/globals.h"
|
|
|
|
namespace dart {
|
|
namespace bin {
|
|
|
|
class DartDevUtils {
|
|
public:
|
|
// Returns true if there does not exist a file at |script_uri|.
|
|
static bool ShouldParseCommand(const char* script_uri);
|
|
|
|
// Returns true if we were successfully able to parse a DartDev command.
|
|
// Returns false if we were unable to find a matching command or a matching
|
|
// snapshot does not exist, in which case the VM should exit.
|
|
static bool TryParseCommandFromScriptName(char** script_name);
|
|
|
|
private:
|
|
DISALLOW_ALLOCATION();
|
|
DISALLOW_IMPLICIT_CONSTRUCTORS(DartDevUtils);
|
|
};
|
|
|
|
} // namespace bin
|
|
} // namespace dart
|
|
|
|
#endif // RUNTIME_BIN_DARTDEV_UTILS_H_
|