mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 20:29:18 +00:00
Meta: Add help to generate_python_encoding_indexes.py
Some checks are pending
CI / macOS, arm64, Sanitizer_CI, Clang (push) Waiting to run
CI / Linux, x86_64, Fuzzers_CI, Clang (push) Waiting to run
CI / Linux, x86_64, Sanitizer_CI, GNU (push) Waiting to run
CI / Linux, x86_64, Sanitizer_CI, Clang (push) Waiting to run
Package the js repl as a binary artifact / Linux, arm64 (push) Waiting to run
Package the js repl as a binary artifact / macOS, arm64 (push) Waiting to run
Package the js repl as a binary artifact / Linux, x86_64 (push) Waiting to run
Run test262 and test-wasm / run_and_update_results (push) Waiting to run
Lint Code / lint (push) Waiting to run
Label PRs with merge conflicts / auto-labeler (push) Waiting to run
Push notes / build (push) Waiting to run
Some checks are pending
CI / macOS, arm64, Sanitizer_CI, Clang (push) Waiting to run
CI / Linux, x86_64, Fuzzers_CI, Clang (push) Waiting to run
CI / Linux, x86_64, Sanitizer_CI, GNU (push) Waiting to run
CI / Linux, x86_64, Sanitizer_CI, Clang (push) Waiting to run
Package the js repl as a binary artifact / Linux, arm64 (push) Waiting to run
Package the js repl as a binary artifact / macOS, arm64 (push) Waiting to run
Package the js repl as a binary artifact / Linux, x86_64 (push) Waiting to run
Run test262 and test-wasm / run_and_update_results (push) Waiting to run
Lint Code / lint (push) Waiting to run
Label PRs with merge conflicts / auto-labeler (push) Waiting to run
Push notes / build (push) Waiting to run
This commit is contained in:
parent
2682f370dd
commit
1a3a9eee7a
Notes:
github-actions[bot]
2025-06-30 02:05:03 +00:00
Author: https://github.com/ayeteadoe
Commit: 1a3a9eee7a
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5227
Reviewed-by: https://github.com/ADKaster
Reviewed-by: https://github.com/shannonbooth ✅
1 changed files with 11 additions and 3 deletions
|
@ -215,9 +215,17 @@ namespace TextCodec {
|
|||
|
||||
def main():
|
||||
parser = argparse.ArgumentParser(description="Generate text codec lookup tables", add_help=False)
|
||||
parser.add_argument("-h", required=True)
|
||||
parser.add_argument("-c", required=True)
|
||||
parser.add_argument("-j", required=True)
|
||||
parser.add_argument("-H", action="help", help="Show this help message and exit")
|
||||
parser.add_argument(
|
||||
"-h", "-generated-header-path", required=True, help="Path to the lookup table header file to generate"
|
||||
)
|
||||
parser.add_argument(
|
||||
"-c",
|
||||
"-generated_implementation_path",
|
||||
required=True,
|
||||
help="Path to the lookup table implementation file to generate",
|
||||
)
|
||||
parser.add_argument("-j", "-json-path", required=True, help="Path to the JSON file to read from")
|
||||
|
||||
args = parser.parse_args()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue