From 841763326a87031d9013f9df395587f44df1ac81 Mon Sep 17 00:00:00 2001 From: DaLun Date: Mon, 9 Oct 2017 12:29:59 -0500 Subject: [PATCH 1/6] Create v8-development.md --- docs-translations/zh-TW/development/v8-development.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 docs-translations/zh-TW/development/v8-development.md diff --git a/docs-translations/zh-TW/development/v8-development.md b/docs-translations/zh-TW/development/v8-development.md new file mode 100644 index 000000000000..721b145723c5 --- /dev/null +++ b/docs-translations/zh-TW/development/v8-development.md @@ -0,0 +1,11 @@ +# V8 開發 + +> 一些有關於學習與使用 V8 的收集資源 + +* [V8 追蹤](https://github.com/v8/v8/wiki/Tracing-V8) +* [V8 性能分析](https://github.com/v8/v8/wiki/V8-Profiler) - 介紹一些有用的性能分析參數: `--prof`,`--trace-ic`,`--trace-opt`,`--trace-deopt`,`--print-bytecode`,`--print-opt-code` +* [V8 設計理念](https://docs.google.com/document/d/11T2CRex9hXxoJwbYqVQ32yIPMh0uouUZLdyrtmMoL44/edit?ts=56f27d9d#heading=h.6jz9dj3bnr8t) +* [編譯器最佳化](https://github.com/v8/v8/wiki/TurboFan) +* [V8 GDB 除錯](https://github.com/v8/v8/wiki/GDB-JIT-Interface) + +[Chromium Development](chromium-development.md) 裡有更多資訊。 From 48be4e765a6a062a7f7fb171e8972ebae446949f Mon Sep 17 00:00:00 2001 From: DaLun Date: Mon, 9 Oct 2017 12:36:27 -0500 Subject: [PATCH 2/6] Create point.md --- docs-translations/zh-TW/api/structures/point.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 docs-translations/zh-TW/api/structures/point.md diff --git a/docs-translations/zh-TW/api/structures/point.md b/docs-translations/zh-TW/api/structures/point.md new file mode 100644 index 000000000000..074002231ce5 --- /dev/null +++ b/docs-translations/zh-TW/api/structures/point.md @@ -0,0 +1,4 @@ +# Point 物件 + +* `x` 數字 +* `y` 數字 From d096fc8acfd0430d607ac54e62d2d20d70bde4d7 Mon Sep 17 00:00:00 2001 From: DaLun Date: Mon, 9 Oct 2017 12:37:48 -0500 Subject: [PATCH 3/6] Create size.md --- docs-translations/zh-TW/api/structures/size.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 docs-translations/zh-TW/api/structures/size.md diff --git a/docs-translations/zh-TW/api/structures/size.md b/docs-translations/zh-TW/api/structures/size.md new file mode 100644 index 000000000000..a22f0b79c3e2 --- /dev/null +++ b/docs-translations/zh-TW/api/structures/size.md @@ -0,0 +1,4 @@ +# Size 物件 + +* `width` 數字 +* `height` 數字 From e655222d2fd6af002af71b975c3f5dc9e86392c0 Mon Sep 17 00:00:00 2001 From: DaLun Date: Mon, 9 Oct 2017 12:45:56 -0500 Subject: [PATCH 4/6] Create upload-blob.md --- docs-translations/zh-TW/api/structures/upload-blob.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 docs-translations/zh-TW/api/structures/upload-blob.md diff --git a/docs-translations/zh-TW/api/structures/upload-blob.md b/docs-translations/zh-TW/api/structures/upload-blob.md new file mode 100644 index 000000000000..8092ff6baad2 --- /dev/null +++ b/docs-translations/zh-TW/api/structures/upload-blob.md @@ -0,0 +1,4 @@ +# UploadBlob 物件 + +* `type` 字串 - 應為 `blob` 。 +* `blobUUID` 字串 - 此上傳資料的 UUID 。 From 53d138505a07732e831b42b85dbdcdcd101157c7 Mon Sep 17 00:00:00 2001 From: DaLun Date: Mon, 9 Oct 2017 12:47:42 -0500 Subject: [PATCH 5/6] Create crash-report.md --- docs-translations/zh-TW/api/structures/crash-report.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 docs-translations/zh-TW/api/structures/crash-report.md diff --git a/docs-translations/zh-TW/api/structures/crash-report.md b/docs-translations/zh-TW/api/structures/crash-report.md new file mode 100644 index 000000000000..f139b3e579b4 --- /dev/null +++ b/docs-translations/zh-TW/api/structures/crash-report.md @@ -0,0 +1,4 @@ +# CrashReport 物件 + +* `date` 字串 +* `ID` 整數 From 0572b395baff5ac3bbe613a3aaf6a0ee6ff9ff2b Mon Sep 17 00:00:00 2001 From: DaLun Date: Mon, 9 Oct 2017 12:55:49 -0500 Subject: [PATCH 6/6] Delete v8-development.md --- docs-translations/zh-TW/development/v8-development.md | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 docs-translations/zh-TW/development/v8-development.md diff --git a/docs-translations/zh-TW/development/v8-development.md b/docs-translations/zh-TW/development/v8-development.md deleted file mode 100644 index 721b145723c5..000000000000 --- a/docs-translations/zh-TW/development/v8-development.md +++ /dev/null @@ -1,11 +0,0 @@ -# V8 開發 - -> 一些有關於學習與使用 V8 的收集資源 - -* [V8 追蹤](https://github.com/v8/v8/wiki/Tracing-V8) -* [V8 性能分析](https://github.com/v8/v8/wiki/V8-Profiler) - 介紹一些有用的性能分析參數: `--prof`,`--trace-ic`,`--trace-opt`,`--trace-deopt`,`--print-bytecode`,`--print-opt-code` -* [V8 設計理念](https://docs.google.com/document/d/11T2CRex9hXxoJwbYqVQ32yIPMh0uouUZLdyrtmMoL44/edit?ts=56f27d9d#heading=h.6jz9dj3bnr8t) -* [編譯器最佳化](https://github.com/v8/v8/wiki/TurboFan) -* [V8 GDB 除錯](https://github.com/v8/v8/wiki/GDB-JIT-Interface) - -[Chromium Development](chromium-development.md) 裡有更多資訊。