mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-22 09:26:19 +04:00
Compare commits
8 Commits
d76f223ca4
...
7824958511
Author | SHA1 | Date | |
---|---|---|---|
|
7824958511 | ||
|
a219d5aabb | ||
|
d489c03c4f | ||
|
f621423e7d | ||
|
35802cb025 | ||
|
6cca98264f | ||
|
9806ca08b1 | ||
|
b5d56e57a6 |
632
Cargo.lock
generated
632
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@ -41,7 +41,7 @@ package.helix-term.opt-level = 2
|
|||||||
tree-sitter = { version = "0.22" }
|
tree-sitter = { version = "0.22" }
|
||||||
nucleo = "0.5.0"
|
nucleo = "0.5.0"
|
||||||
slotmap = "1.0.7"
|
slotmap = "1.0.7"
|
||||||
thiserror = "1.0"
|
thiserror = "2.0"
|
||||||
|
|
||||||
[workspace.package]
|
[workspace.package]
|
||||||
version = "24.7.0"
|
version = "24.7.0"
|
||||||
|
@ -29,7 +29,7 @@ unicode-segmentation = "1.12"
|
|||||||
# For now lets lock the version to avoid rendering glitches
|
# For now lets lock the version to avoid rendering glitches
|
||||||
# when installing without `--locked`
|
# when installing without `--locked`
|
||||||
unicode-width = "=0.1.12"
|
unicode-width = "=0.1.12"
|
||||||
unicode-general-category = "0.6"
|
unicode-general-category = "1.0"
|
||||||
slotmap.workspace = true
|
slotmap.workspace = true
|
||||||
tree-sitter.workspace = true
|
tree-sitter.workspace = true
|
||||||
once_cell = "1.20"
|
once_cell = "1.20"
|
||||||
@ -39,7 +39,7 @@ bitflags = "2.6"
|
|||||||
ahash = "0.8.11"
|
ahash = "0.8.11"
|
||||||
hashbrown = { version = "0.14.5", features = ["raw"] }
|
hashbrown = { version = "0.14.5", features = ["raw"] }
|
||||||
dunce = "1.0"
|
dunce = "1.0"
|
||||||
url = "2.5.0"
|
url = "2.5.3"
|
||||||
|
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
|
@ -30,7 +30,7 @@ log = "0.4"
|
|||||||
# cloning/compiling tree-sitter grammars
|
# cloning/compiling tree-sitter grammars
|
||||||
cc = { version = "1" }
|
cc = { version = "1" }
|
||||||
threadpool = { version = "1.0" }
|
threadpool = { version = "1.0" }
|
||||||
tempfile = "3.13.0"
|
tempfile = "3.14.0"
|
||||||
dunce = "1.0.5"
|
dunce = "1.0.5"
|
||||||
|
|
||||||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
||||||
|
@ -22,10 +22,10 @@ license = "MIT"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bitflags = "2.6.0"
|
bitflags = "2.6.0"
|
||||||
serde = { version = "1.0.209", features = ["derive"] }
|
serde = { version = "1.0.215", features = ["derive"] }
|
||||||
serde_json = "1.0.132"
|
serde_json = "1.0.132"
|
||||||
serde_repr = "0.1"
|
serde_repr = "0.1"
|
||||||
url = {version = "2.0.0", features = ["serde"]}
|
url = {version = "2.5.3", features = ["serde"]}
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = []
|
default = []
|
||||||
|
@ -26,7 +26,7 @@ globset = "0.4.15"
|
|||||||
log = "0.4"
|
log = "0.4"
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
serde_json = "1.0"
|
serde_json = "1.0"
|
||||||
tokio = { version = "1.40", features = ["rt", "rt-multi-thread", "io-util", "io-std", "time", "process", "macros", "fs", "parking_lot", "sync"] }
|
tokio = { version = "1.41", features = ["rt", "rt-multi-thread", "io-util", "io-std", "time", "process", "macros", "fs", "parking_lot", "sync"] }
|
||||||
tokio-stream = "0.1.15"
|
tokio-stream = "0.1.15"
|
||||||
parking_lot = "0.12.3"
|
parking_lot = "0.12.3"
|
||||||
arc-swap = "1"
|
arc-swap = "1"
|
||||||
|
@ -15,7 +15,7 @@ homepage.workspace = true
|
|||||||
dunce = "1.0"
|
dunce = "1.0"
|
||||||
etcetera = "0.8"
|
etcetera = "0.8"
|
||||||
ropey = { version = "1.6.1", default-features = false }
|
ropey = { version = "1.6.1", default-features = false }
|
||||||
which = "6.0"
|
which = "7.0"
|
||||||
regex-cursor = "0.1.4"
|
regex-cursor = "0.1.4"
|
||||||
bitflags = "2.6"
|
bitflags = "2.6"
|
||||||
|
|
||||||
@ -26,4 +26,4 @@ windows-sys = { version = "0.59", features = ["Win32_Foundation", "Win32_Securit
|
|||||||
rustix = { version = "0.38", features = ["fs"] }
|
rustix = { version = "0.38", features = ["fs"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tempfile = "3.13"
|
tempfile = "3.14"
|
||||||
|
@ -56,11 +56,11 @@ ignore = "0.4"
|
|||||||
pulldown-cmark = { version = "0.12", default-features = false }
|
pulldown-cmark = { version = "0.12", default-features = false }
|
||||||
# file type detection
|
# file type detection
|
||||||
content_inspector = "0.2.4"
|
content_inspector = "0.2.4"
|
||||||
thiserror = "1.0"
|
thiserror.workspace = true
|
||||||
|
|
||||||
# opening URLs
|
# opening URLs
|
||||||
open = "5.3.0"
|
open = "5.3.0"
|
||||||
url = "2.5.2"
|
url = "2.5.3"
|
||||||
|
|
||||||
# config
|
# config
|
||||||
toml = "0.8"
|
toml = "0.8"
|
||||||
@ -74,7 +74,7 @@ grep-searcher = "0.1.14"
|
|||||||
|
|
||||||
[target.'cfg(not(windows))'.dependencies] # https://github.com/vorner/signal-hook/issues/100
|
[target.'cfg(not(windows))'.dependencies] # https://github.com/vorner/signal-hook/issues/100
|
||||||
signal-hook-tokio = { version = "0.3", features = ["futures-v0_3"] }
|
signal-hook-tokio = { version = "0.3", features = ["futures-v0_3"] }
|
||||||
libc = "0.2.161"
|
libc = "0.2.162"
|
||||||
|
|
||||||
[target.'cfg(target_os = "macos")'.dependencies]
|
[target.'cfg(target_os = "macos")'.dependencies]
|
||||||
crossterm = { version = "0.28", features = ["event-stream", "use-dev-tty", "libc"] }
|
crossterm = { version = "0.28", features = ["event-stream", "use-dev-tty", "libc"] }
|
||||||
@ -85,5 +85,5 @@ helix-loader = { path = "../helix-loader" }
|
|||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
smallvec = "1.13"
|
smallvec = "1.13"
|
||||||
indoc = "2.0.5"
|
indoc = "2.0.5"
|
||||||
tempfile = "3.13.0"
|
tempfile = "3.14.0"
|
||||||
same-file = "1.0.1"
|
same-file = "1.0.1"
|
||||||
|
@ -19,7 +19,7 @@ tokio = { version = "1", features = ["rt", "rt-multi-thread", "time", "sync", "p
|
|||||||
parking_lot = "0.12"
|
parking_lot = "0.12"
|
||||||
arc-swap = { version = "1.7.1" }
|
arc-swap = { version = "1.7.1" }
|
||||||
|
|
||||||
gix = { version = "0.66.0", features = ["attributes", "status"], default-features = false, optional = true }
|
gix = { version = "0.67.0", features = ["attributes", "status"], default-features = false, optional = true }
|
||||||
imara-diff = "0.1.7"
|
imara-diff = "0.1.7"
|
||||||
anyhow = "1"
|
anyhow = "1"
|
||||||
|
|
||||||
@ -29,4 +29,4 @@ log = "0.4"
|
|||||||
git = ["gix"]
|
git = ["gix"]
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tempfile = "3.13"
|
tempfile = "3.14"
|
||||||
|
@ -198,7 +198,7 @@ fn find_file_in_commit(repo: &Repository, commit: &Commit, file: &Path) -> Resul
|
|||||||
let rel_path = file.strip_prefix(repo_dir)?;
|
let rel_path = file.strip_prefix(repo_dir)?;
|
||||||
let tree = commit.tree()?;
|
let tree = commit.tree()?;
|
||||||
let tree_entry = tree
|
let tree_entry = tree
|
||||||
.lookup_entry_by_path(rel_path, &mut Vec::new())?
|
.lookup_entry_by_path(rel_path)?
|
||||||
.context("file is untracked")?;
|
.context("file is untracked")?;
|
||||||
match tree_entry.mode().kind() {
|
match tree_entry.mode().kind() {
|
||||||
// not a file, everything is new, do not show diff
|
// not a file, everything is new, do not show diff
|
||||||
|
@ -28,11 +28,11 @@ bitflags = "2.6"
|
|||||||
anyhow = "1"
|
anyhow = "1"
|
||||||
crossterm = { version = "0.28", optional = true }
|
crossterm = { version = "0.28", optional = true }
|
||||||
|
|
||||||
tempfile = "3.13"
|
tempfile = "3.14"
|
||||||
|
|
||||||
# Conversion traits
|
# Conversion traits
|
||||||
once_cell = "1.20"
|
once_cell = "1.20"
|
||||||
url = "2.5.2"
|
url = "2.5.3"
|
||||||
|
|
||||||
arc-swap = { version = "1.7.1" }
|
arc-swap = { version = "1.7.1" }
|
||||||
|
|
||||||
|
26
helix-view/tests/encoding/LICENSE-WHATWG
Normal file
26
helix-view/tests/encoding/LICENSE-WHATWG
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
Copyright © WHATWG (Apple, Google, Mozilla, Microsoft).
|
||||||
|
|
||||||
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
modification, are permitted provided that the following conditions are met:
|
||||||
|
|
||||||
|
1. Redistributions of source code must retain the above copyright notice, this
|
||||||
|
list of conditions and the following disclaimer.
|
||||||
|
|
||||||
|
2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
this list of conditions and the following disclaimer in the documentation
|
||||||
|
and/or other materials provided with the distribution.
|
||||||
|
|
||||||
|
3. Neither the name of the copyright holder nor the names of its
|
||||||
|
contributors may be used to endorse or promote products derived from
|
||||||
|
this software without specific prior written permission.
|
||||||
|
|
||||||
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
|
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
||||||
|
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||||
|
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||||
|
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||||
|
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||||
|
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
@ -1,5 +1,4 @@
|
|||||||
Any copyright to the test code below this comment is dedicated to the
|
Generated from WHATWG indexes.json; see LICENSE-WHATWG.
|
||||||
Public Domain. http://creativecommons.org/publicdomain/zero/1.0/
|
|
||||||
|
|
||||||
This is a generated file. Please do not edit.
|
This is a generated file. Please do not edit.
|
||||||
Instead, please regenerate using generate-encoding-data.py
|
Instead, please regenerate using generate-encoding-data.py
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
Any copyright to the test code below this comment is dedicated to the
|
Generated from WHATWG indexes.json; see LICENSE-WHATWG.
|
||||||
Public Domain. http://creativecommons.org/publicdomain/zero/1.0/
|
|
||||||
|
|
||||||
This is a generated file. Please do not edit.
|
This is a generated file. Please do not edit.
|
||||||
Instead, please regenerate using generate-encoding-data.py
|
Instead, please regenerate using generate-encoding-data.py
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
Any copyright to the test code below this comment is dedicated to the
|
Generated from WHATWG indexes.json; see LICENSE-WHATWG.
|
||||||
Public Domain. http://creativecommons.org/publicdomain/zero/1.0/
|
|
||||||
|
|
||||||
This is a generated file. Please do not edit.
|
This is a generated file. Please do not edit.
|
||||||
Instead, please regenerate using generate-encoding-data.py
|
Instead, please regenerate using generate-encoding-data.py
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
Any copyright to the test code below this comment is dedicated to the
|
Generated from WHATWG indexes.json; see LICENSE-WHATWG.
|
||||||
Public Domain. http://creativecommons.org/publicdomain/zero/1.0/
|
|
||||||
|
|
||||||
This is a generated file. Please do not edit.
|
This is a generated file. Please do not edit.
|
||||||
Instead, please regenerate using generate-encoding-data.py
|
Instead, please regenerate using generate-encoding-data.py
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
Any copyright to the test code below this comment is dedicated to the
|
Generated from WHATWG indexes.json; see LICENSE-WHATWG.
|
||||||
Public Domain. http://creativecommons.org/publicdomain/zero/1.0/
|
|
||||||
|
|
||||||
This is a generated file. Please do not edit.
|
This is a generated file. Please do not edit.
|
||||||
Instead, please regenerate using generate-encoding-data.py
|
Instead, please regenerate using generate-encoding-data.py
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
Any copyright to the test code below this comment is dedicated to the
|
Generated from WHATWG indexes.json; see LICENSE-WHATWG.
|
||||||
Public Domain. http://creativecommons.org/publicdomain/zero/1.0/
|
|
||||||
|
|
||||||
This is a generated file. Please do not edit.
|
This is a generated file. Please do not edit.
|
||||||
Instead, please regenerate using generate-encoding-data.py
|
Instead, please regenerate using generate-encoding-data.py
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
Any copyright to the test code below this comment is dedicated to the
|
Generated from WHATWG indexes.json; see LICENSE-WHATWG.
|
||||||
Public Domain. http://creativecommons.org/publicdomain/zero/1.0/
|
|
||||||
|
|
||||||
This is a generated file. Please do not edit.
|
This is a generated file. Please do not edit.
|
||||||
Instead, please regenerate using generate-encoding-data.py
|
Instead, please regenerate using generate-encoding-data.py
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
Any copyright to the test code below this comment is dedicated to the
|
Generated from WHATWG indexes.json; see LICENSE-WHATWG.
|
||||||
Public Domain. http://creativecommons.org/publicdomain/zero/1.0/
|
|
||||||
|
|
||||||
This is a generated file. Please do not edit.
|
This is a generated file. Please do not edit.
|
||||||
Instead, please regenerate using generate-encoding-data.py
|
Instead, please regenerate using generate-encoding-data.py
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
Any copyright to the test code below this comment is dedicated to the
|
Generated from WHATWG indexes.json; see LICENSE-WHATWG.
|
||||||
Public Domain. http://creativecommons.org/publicdomain/zero/1.0/
|
|
||||||
|
|
||||||
This is a generated file. Please do not edit.
|
This is a generated file. Please do not edit.
|
||||||
Instead, please regenerate using generate-encoding-data.py
|
Instead, please regenerate using generate-encoding-data.py
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
Any copyright to the test code below this comment is dedicated to the
|
Generated from WHATWG indexes.json; see LICENSE-WHATWG.
|
||||||
Public Domain. http://creativecommons.org/publicdomain/zero/1.0/
|
|
||||||
|
|
||||||
This is a generated file. Please do not edit.
|
This is a generated file. Please do not edit.
|
||||||
Instead, please regenerate using generate-encoding-data.py
|
Instead, please regenerate using generate-encoding-data.py
|
||||||
@ -7185,13 +7184,13 @@ Instead, please regenerate using generate-encoding-data.py
|
|||||||
χ
|
χ
|
||||||
ψ
|
ψ
|
||||||
ω
|
ω
|
||||||
|
︐
|
||||||
|
︒
|
||||||
|
︑
|
||||||
|
︓
|
||||||
|
︔
|
||||||
|
︕
|
||||||
|
︖
|
||||||
︵
|
︵
|
||||||
︶
|
︶
|
||||||
︹
|
︹
|
||||||
@ -7204,14 +7203,14 @@ Instead, please regenerate using generate-encoding-data.py
|
|||||||
﹂
|
﹂
|
||||||
﹃
|
﹃
|
||||||
﹄
|
﹄
|
||||||
|
︗
|
||||||
|
︘
|
||||||
︻
|
︻
|
||||||
︼
|
︼
|
||||||
︷
|
︷
|
||||||
︸
|
︸
|
||||||
︱
|
︱
|
||||||
|
︙
|
||||||
︳
|
︳
|
||||||
︴
|
︴
|
||||||
|
|
||||||
@ -23778,7 +23777,7 @@ Instead, please regenerate using generate-encoding-data.py
|
|||||||
㑇
|
㑇
|
||||||
⺈
|
⺈
|
||||||
⺋
|
⺋
|
||||||
|
龴
|
||||||
㖞
|
㖞
|
||||||
㘚
|
㘚
|
||||||
㘎
|
㘎
|
||||||
@ -23786,19 +23785,19 @@ Instead, please regenerate using generate-encoding-data.py
|
|||||||
⺗
|
⺗
|
||||||
㥮
|
㥮
|
||||||
㤘
|
㤘
|
||||||
|
龵
|
||||||
㧏
|
㧏
|
||||||
㧟
|
㧟
|
||||||
㩳
|
㩳
|
||||||
㧐
|
㧐
|
||||||
|
龶
|
||||||
|
龷
|
||||||
㭎
|
㭎
|
||||||
㱮
|
㱮
|
||||||
㳠
|
㳠
|
||||||
⺧
|
⺧
|
||||||
|
|
||||||
|
龸
|
||||||
⺪
|
⺪
|
||||||
䁖
|
䁖
|
||||||
䅟
|
䅟
|
||||||
@ -23815,7 +23814,7 @@ Instead, please regenerate using generate-encoding-data.py
|
|||||||
䓖
|
䓖
|
||||||
䙡
|
䙡
|
||||||
䙌
|
䙌
|
||||||
|
龹
|
||||||
䜣
|
䜣
|
||||||
䜩
|
䜩
|
||||||
䝼
|
䝼
|
||||||
@ -23832,7 +23831,7 @@ Instead, please regenerate using generate-encoding-data.py
|
|||||||
䦛
|
䦛
|
||||||
䦷
|
䦷
|
||||||
䦶
|
䦶
|
||||||
|
龺
|
||||||
|
|
||||||
䲣
|
䲣
|
||||||
䲟
|
䲟
|
||||||
@ -23848,7 +23847,7 @@ Instead, please regenerate using generate-encoding-data.py
|
|||||||
䴘
|
䴘
|
||||||
䴙
|
䴙
|
||||||
䶮
|
䶮
|
||||||
|
龻
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
Any copyright to the test code below this comment is dedicated to the
|
Generated from WHATWG indexes.json; see LICENSE-WHATWG.
|
||||||
Public Domain. http://creativecommons.org/publicdomain/zero/1.0/
|
|
||||||
|
|
||||||
This is a generated file. Please do not edit.
|
This is a generated file. Please do not edit.
|
||||||
Instead, please regenerate using generate-encoding-data.py
|
Instead, please regenerate using generate-encoding-data.py
|
||||||
@ -7184,13 +7183,13 @@ Instead, please regenerate using generate-encoding-data.py
|
|||||||
χ
|
χ
|
||||||
ψ
|
ψ
|
||||||
ω
|
ω
|
||||||
|
︐
|
||||||
|
︒
|
||||||
|
︑
|
||||||
|
︓
|
||||||
|
︔
|
||||||
|
︕
|
||||||
|
︖
|
||||||
︵
|
︵
|
||||||
︶
|
︶
|
||||||
︹
|
︹
|
||||||
@ -7203,14 +7202,14 @@ Instead, please regenerate using generate-encoding-data.py
|
|||||||
﹂
|
﹂
|
||||||
﹃
|
﹃
|
||||||
﹄
|
﹄
|
||||||
|
︗
|
||||||
|
︘
|
||||||
︻
|
︻
|
||||||
︼
|
︼
|
||||||
︷
|
︷
|
||||||
︸
|
︸
|
||||||
︱
|
︱
|
||||||
|
︙
|
||||||
︳
|
︳
|
||||||
︴
|
︴
|
||||||
|
|
||||||
@ -23777,7 +23776,7 @@ Instead, please regenerate using generate-encoding-data.py
|
|||||||
㑇
|
㑇
|
||||||
⺈
|
⺈
|
||||||
⺋
|
⺋
|
||||||
|
龴
|
||||||
㖞
|
㖞
|
||||||
㘚
|
㘚
|
||||||
㘎
|
㘎
|
||||||
@ -23785,19 +23784,19 @@ Instead, please regenerate using generate-encoding-data.py
|
|||||||
⺗
|
⺗
|
||||||
㥮
|
㥮
|
||||||
㤘
|
㤘
|
||||||
|
龵
|
||||||
㧏
|
㧏
|
||||||
㧟
|
㧟
|
||||||
㩳
|
㩳
|
||||||
㧐
|
㧐
|
||||||
|
龶
|
||||||
|
龷
|
||||||
㭎
|
㭎
|
||||||
㱮
|
㱮
|
||||||
㳠
|
㳠
|
||||||
⺧
|
⺧
|
||||||
|
|
||||||
|
龸
|
||||||
⺪
|
⺪
|
||||||
䁖
|
䁖
|
||||||
䅟
|
䅟
|
||||||
@ -23814,7 +23813,7 @@ Instead, please regenerate using generate-encoding-data.py
|
|||||||
䓖
|
䓖
|
||||||
䙡
|
䙡
|
||||||
䙌
|
䙌
|
||||||
|
龹
|
||||||
䜣
|
䜣
|
||||||
䜩
|
䜩
|
||||||
䝼
|
䝼
|
||||||
@ -23831,7 +23830,7 @@ Instead, please regenerate using generate-encoding-data.py
|
|||||||
䦛
|
䦛
|
||||||
䦷
|
䦷
|
||||||
䦶
|
䦶
|
||||||
|
龺
|
||||||
|
|
||||||
䲣
|
䲣
|
||||||
䲟
|
䲟
|
||||||
@ -23847,7 +23846,7 @@ Instead, please regenerate using generate-encoding-data.py
|
|||||||
䴘
|
䴘
|
||||||
䴙
|
䴙
|
||||||
䶮
|
䶮
|
||||||
|
龻
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
Any copyright to the test code below this comment is dedicated to the
|
Generated from WHATWG indexes.json; see LICENSE-WHATWG.
|
||||||
Public Domain. http://creativecommons.org/publicdomain/zero/1.0/
|
|
||||||
|
|
||||||
This is a generated file. Please do not edit.
|
This is a generated file. Please do not edit.
|
||||||
Instead, please regenerate using generate-encoding-data.py
|
Instead, please regenerate using generate-encoding-data.py
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
Any copyright to the test code below this comment is dedicated to the
|
Generated from WHATWG indexes.json; see LICENSE-WHATWG.
|
||||||
Public Domain. http://creativecommons.org/publicdomain/zero/1.0/
|
|
||||||
|
|
||||||
This is a generated file. Please do not edit.
|
This is a generated file. Please do not edit.
|
||||||
Instead, please regenerate using generate-encoding-data.py
|
Instead, please regenerate using generate-encoding-data.py
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
Any copyright to the test code below this comment is dedicated to the
|
Generated from WHATWG indexes.json; see LICENSE-WHATWG.
|
||||||
Public Domain. http://creativecommons.org/publicdomain/zero/1.0/
|
|
||||||
|
|
||||||
This is a generated file. Please do not edit.
|
This is a generated file. Please do not edit.
|
||||||
Instead, please regenerate using generate-encoding-data.py
|
Instead, please regenerate using generate-encoding-data.py
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
Any copyright to the test code below this comment is dedicated to the
|
Generated from WHATWG indexes.json; see LICENSE-WHATWG.
|
||||||
Public Domain. http://creativecommons.org/publicdomain/zero/1.0/
|
|
||||||
|
|
||||||
This is a generated file. Please do not edit.
|
This is a generated file. Please do not edit.
|
||||||
Instead, please regenerate using generate-encoding-data.py
|
Instead, please regenerate using generate-encoding-data.py
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
Any copyright to the test code below this comment is dedicated to the
|
Generated from WHATWG indexes.json; see LICENSE-WHATWG.
|
||||||
Public Domain. http://creativecommons.org/publicdomain/zero/1.0/
|
|
||||||
|
|
||||||
This is a generated file. Please do not edit.
|
This is a generated file. Please do not edit.
|
||||||
Instead, please regenerate using generate-encoding-data.py
|
Instead, please regenerate using generate-encoding-data.py
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
Any copyright to the test code below this comment is dedicated to the
|
Generated from WHATWG indexes.json; see LICENSE-WHATWG.
|
||||||
Public Domain. http://creativecommons.org/publicdomain/zero/1.0/
|
|
||||||
|
|
||||||
This is a generated file. Please do not edit.
|
This is a generated file. Please do not edit.
|
||||||
Instead, please regenerate using generate-encoding-data.py
|
Instead, please regenerate using generate-encoding-data.py
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
Any copyright to the test code below this comment is dedicated to the
|
Generated from WHATWG indexes.json; see LICENSE-WHATWG.
|
||||||
Public Domain. http://creativecommons.org/publicdomain/zero/1.0/
|
|
||||||
|
|
||||||
This is a generated file. Please do not edit.
|
This is a generated file. Please do not edit.
|
||||||
Instead, please regenerate using generate-encoding-data.py
|
Instead, please regenerate using generate-encoding-data.py
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
Any copyright to the test code below this comment is dedicated to the
|
Generated from WHATWG indexes.json; see LICENSE-WHATWG.
|
||||||
Public Domain. http://creativecommons.org/publicdomain/zero/1.0/
|
|
||||||
|
|
||||||
This is a generated file. Please do not edit.
|
This is a generated file. Please do not edit.
|
||||||
Instead, please regenerate using generate-encoding-data.py
|
Instead, please regenerate using generate-encoding-data.py
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
Any copyright to the test code below this comment is dedicated to the
|
Generated from WHATWG indexes.json; see LICENSE-WHATWG.
|
||||||
Public Domain. http://creativecommons.org/publicdomain/zero/1.0/
|
|
||||||
|
|
||||||
This is a generated file. Please do not edit.
|
This is a generated file. Please do not edit.
|
||||||
Instead, please regenerate using generate-encoding-data.py
|
Instead, please regenerate using generate-encoding-data.py
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
Any copyright to the test code below this comment is dedicated to the
|
Generated from WHATWG indexes.json; see LICENSE-WHATWG.
|
||||||
Public Domain. http://creativecommons.org/publicdomain/zero/1.0/
|
|
||||||
|
|
||||||
This is a generated file. Please do not edit.
|
This is a generated file. Please do not edit.
|
||||||
Instead, please regenerate using generate-encoding-data.py
|
Instead, please regenerate using generate-encoding-data.py
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
Any copyright to the test code below this comment is dedicated to the
|
Generated from WHATWG indexes.json; see LICENSE-WHATWG.
|
||||||
Public Domain. http://creativecommons.org/publicdomain/zero/1.0/
|
|
||||||
|
|
||||||
This is a generated file. Please do not edit.
|
This is a generated file. Please do not edit.
|
||||||
Instead, please regenerate using generate-encoding-data.py
|
Instead, please regenerate using generate-encoding-data.py
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
Any copyright to the test code below this comment is dedicated to the
|
Generated from WHATWG indexes.json; see LICENSE-WHATWG.
|
||||||
Public Domain. http://creativecommons.org/publicdomain/zero/1.0/
|
|
||||||
|
|
||||||
This is a generated file. Please do not edit.
|
This is a generated file. Please do not edit.
|
||||||
Instead, please regenerate using generate-encoding-data.py
|
Instead, please regenerate using generate-encoding-data.py
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
Any copyright to the test code below this comment is dedicated to the
|
Generated from WHATWG indexes.json; see LICENSE-WHATWG.
|
||||||
Public Domain. http://creativecommons.org/publicdomain/zero/1.0/
|
|
||||||
|
|
||||||
This is a generated file. Please do not edit.
|
This is a generated file. Please do not edit.
|
||||||
Instead, please regenerate using generate-encoding-data.py
|
Instead, please regenerate using generate-encoding-data.py
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
Any copyright to the test code below this comment is dedicated to the
|
Generated from WHATWG indexes.json; see LICENSE-WHATWG.
|
||||||
Public Domain. http://creativecommons.org/publicdomain/zero/1.0/
|
|
||||||
|
|
||||||
This is a generated file. Please do not edit.
|
This is a generated file. Please do not edit.
|
||||||
Instead, please regenerate using generate-encoding-data.py
|
Instead, please regenerate using generate-encoding-data.py
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
Any copyright to the test code below this comment is dedicated to the
|
Generated from WHATWG indexes.json; see LICENSE-WHATWG.
|
||||||
Public Domain. http://creativecommons.org/publicdomain/zero/1.0/
|
|
||||||
|
|
||||||
This is a generated file. Please do not edit.
|
This is a generated file. Please do not edit.
|
||||||
Instead, please regenerate using generate-encoding-data.py
|
Instead, please regenerate using generate-encoding-data.py
|
||||||
|
Loading…
Reference in New Issue
Block a user