42bcdcd332
Reason for revert: Breaking API change blocks Flutter rolls. Reverting to reconsider, work around, etc.. Revert "[ VM ] Fixed issue where backing array was deleted from an ExternalTypedData before the ExternalTypedData was used." This reverts commit916b9da48d. Revert "[ VM ] Fixed tests for non-UTF8 paths on Windows / Macos." This reverts commit6327fe91c2. Revert "[ VM ] Fix failing tests on Windows bots after non-UTF-8 paths change." This reverts commitb51f4b7956. Revert "[ VM ] Updated non-UTF-8 tests to expect exceptions on OSX/iOS." This reverts commitbcb36247d2. Revert "Revert "[ VM ] Updated non-UTF-8 tests to expect exceptions on OSX/iOS."" This reverts commit24450c79a5. Change-Id: I756f74f4acdde168d0984fe130f05f9252366334 Reviewed-on: https://dart-review.googlesource.com/55441 Reviewed-by: Todd Volkert <tvolkert@google.com> Commit-Queue: Zach Anderson <zra@google.com>
25 lines
745 B
Dart
25 lines
745 B
Dart
// Copyright (c) 2013, 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.
|
|
|
|
// part of "common_patch.dart";
|
|
|
|
@patch
|
|
class FileStat {
|
|
@patch
|
|
static _statSync(_Namespace namespace, String path) native "File_Stat";
|
|
}
|
|
|
|
@patch
|
|
class FileSystemEntity {
|
|
@patch
|
|
static _getTypeNative(_Namespace namespace, String path, bool followLinks)
|
|
native "File_GetType";
|
|
@patch
|
|
static _identicalNative(_Namespace namespace, String path1, String path2)
|
|
native "File_AreIdentical";
|
|
@patch
|
|
static _resolveSymbolicLinks(_Namespace namespace, String path)
|
|
native "File_ResolveSymbolicLinks";
|
|
}
|