# This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/.
import argparse import sys from pathlib import Path
from mach.decorators import Command, CommandArgument
@Command("xpcshell", category="misc", description="Run the xpcshell binary")
@CommandArgument( "args", nargs=argparse.REMAINDER, help="Arguments to provide to xpcshell"
) def xpcshell(command_context, args):
dist_bin = Path(command_context.topobjdir, "dist", "bin")
browser_dir = dist_bin / "browser"
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.