mirror of
https://github.com/denoland/deno.git
synced 2025-02-25 06:32:41 -05:00
Rollback props positions
This commit is contained in:
parent
c4b2e17841
commit
2fae386eaf
2 changed files with 2 additions and 2 deletions
|
@ -352,8 +352,8 @@ const { 0: statStruct, 1: statBuf } = createByteStruct({
|
||||||
birthtime: "date",
|
birthtime: "date",
|
||||||
ctime: "date",
|
ctime: "date",
|
||||||
dev: "u64",
|
dev: "u64",
|
||||||
mode: "u64",
|
|
||||||
ino: "?u64",
|
ino: "?u64",
|
||||||
|
mode: "u64",
|
||||||
nlink: "?u64",
|
nlink: "?u64",
|
||||||
uid: "?u64",
|
uid: "?u64",
|
||||||
gid: "?u64",
|
gid: "?u64",
|
||||||
|
|
|
@ -1752,10 +1752,10 @@ create_struct_writer! {
|
||||||
birthtime: u64,
|
birthtime: u64,
|
||||||
ctime_set: bool,
|
ctime_set: bool,
|
||||||
ctime: u64,
|
ctime: u64,
|
||||||
mode: u32,
|
|
||||||
// Following are only valid under Unix.
|
// Following are only valid under Unix.
|
||||||
dev: u64,
|
dev: u64,
|
||||||
ino: u64,
|
ino: u64,
|
||||||
|
mode: u32,
|
||||||
nlink: u64,
|
nlink: u64,
|
||||||
uid: u32,
|
uid: u32,
|
||||||
gid: u32,
|
gid: u32,
|
||||||
|
|
Loading…
Add table
Reference in a new issue