├── .bazelignore ├── .bazelrc ├── .gitignore ├── BUILD ├── LICENSE ├── MODULE.bazel ├── README.md ├── WORKSPACE ├── bis_setup.template.py ├── bisproject_aspect.bzl ├── examples ├── .bazelrc ├── .vscode │ └── settings.json ├── MODULE.bazel ├── WORKSPACE ├── WORKSPACE.bzlmod └── srcs │ ├── binary │ ├── apple_binaries │ │ └── BUILD │ ├── cc_binaries │ │ ├── BUILD │ │ └── module_c_test.cc │ └── swift_binaries │ │ ├── BUILD │ │ └── entrance.swift │ ├── ios │ ├── .gitignore │ ├── BUILD │ ├── Info.plist │ ├── app.swift │ └── tests │ │ ├── BUILD │ │ ├── unittest.m │ │ └── unittest.swift │ ├── macos │ ├── CommandLine │ │ ├── BUILD │ │ ├── Info.plist │ │ └── Sources │ │ │ └── main.m │ ├── CommandLineSwift │ │ ├── BUILD │ │ ├── Info.plist │ │ └── Sources │ │ │ └── main.swift │ ├── HelloWorld │ │ ├── BUILD │ │ ├── Info.plist │ │ ├── Resources │ │ │ └── Main.storyboard │ │ └── Sources │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ └── main.m │ └── README.md │ └── shared │ ├── macros │ ├── BUILD.bazel │ ├── Stringify.swift │ ├── StringifyClient.swift │ ├── StringifyMacro.swift │ └── StringifyMacroPlugin.swift │ ├── module_a │ ├── BUILD │ ├── a.m │ ├── include │ │ └── a.h │ └── sub_module_b │ │ ├── sub_b.h │ │ └── sub_b.m │ ├── module_b │ ├── BUILD │ └── module_b.swift │ ├── module_c │ ├── BUILD │ ├── module_c.cc │ └── module_c.h │ └── module_d │ ├── BUILD │ ├── module_d.h │ ├── module_d.m │ └── module_d.swift ├── extensions.bzl ├── json.template.py ├── patches ├── file_filter.patch ├── remove-features-and-skip-syntax-only.patch ├── subtarget.patch └── swift_support.patch ├── plugin └── zxz-moe-bis │ ├── .eslintrc.json │ ├── .gitignore │ ├── .vscodeignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── icon.png │ ├── lldb │ ├── file_monitor.py │ └── simulator_focus.py │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── buildTaskProvider.ts │ ├── cmds.ts │ ├── commonTypes.ts │ ├── configuration.ts │ ├── cpuProvider.ts │ ├── debugConfigProvider.ts │ ├── devicePicker.ts │ ├── devicectl.ts │ ├── error.ts │ ├── eventEmitter.ts │ ├── extension.ts │ ├── inputer.ts │ ├── launchGenerator.ts │ ├── libdeps.ts │ ├── libpath.ts │ ├── logger.ts │ ├── picker.ts │ ├── services.ts │ ├── simulatorFocus.ts │ ├── simulators.ts │ ├── sync.ts │ ├── targets.ts │ ├── test │ │ ├── runTest.ts │ │ └── suite │ │ │ ├── extension.test.ts │ │ │ └── index.ts │ ├── treeProvider.ts │ ├── utils.ts │ ├── variables.ts │ └── workspace.ts │ ├── tsconfig.json │ └── vsc-extension-quickstart.md ├── providers.bzl ├── refresh_compile_commands.bzl ├── refresh_launch_json.bzl ├── repositories.bzl ├── template_generator.bzl └── version.sh /.bazelignore: -------------------------------------------------------------------------------- 1 | examples 2 | -------------------------------------------------------------------------------- /.bazelrc: -------------------------------------------------------------------------------- 1 | common --enable_bzlmod 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/BUILD -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/LICENSE -------------------------------------------------------------------------------- /MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/MODULE.bazel -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/README.md -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/WORKSPACE -------------------------------------------------------------------------------- /bis_setup.template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/bis_setup.template.py -------------------------------------------------------------------------------- /bisproject_aspect.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/bisproject_aspect.bzl -------------------------------------------------------------------------------- /examples/.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/.bazelrc -------------------------------------------------------------------------------- /examples/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/.vscode/settings.json -------------------------------------------------------------------------------- /examples/MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/MODULE.bazel -------------------------------------------------------------------------------- /examples/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/WORKSPACE -------------------------------------------------------------------------------- /examples/WORKSPACE.bzlmod: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/srcs/binary/apple_binaries/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/binary/apple_binaries/BUILD -------------------------------------------------------------------------------- /examples/srcs/binary/cc_binaries/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/binary/cc_binaries/BUILD -------------------------------------------------------------------------------- /examples/srcs/binary/cc_binaries/module_c_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/binary/cc_binaries/module_c_test.cc -------------------------------------------------------------------------------- /examples/srcs/binary/swift_binaries/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/binary/swift_binaries/BUILD -------------------------------------------------------------------------------- /examples/srcs/binary/swift_binaries/entrance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/binary/swift_binaries/entrance.swift -------------------------------------------------------------------------------- /examples/srcs/ios/.gitignore: -------------------------------------------------------------------------------- 1 | debug.mobileprovision 2 | -------------------------------------------------------------------------------- /examples/srcs/ios/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/ios/BUILD -------------------------------------------------------------------------------- /examples/srcs/ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/ios/Info.plist -------------------------------------------------------------------------------- /examples/srcs/ios/app.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/ios/app.swift -------------------------------------------------------------------------------- /examples/srcs/ios/tests/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/ios/tests/BUILD -------------------------------------------------------------------------------- /examples/srcs/ios/tests/unittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/ios/tests/unittest.m -------------------------------------------------------------------------------- /examples/srcs/ios/tests/unittest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/ios/tests/unittest.swift -------------------------------------------------------------------------------- /examples/srcs/macos/CommandLine/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/macos/CommandLine/BUILD -------------------------------------------------------------------------------- /examples/srcs/macos/CommandLine/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/macos/CommandLine/Info.plist -------------------------------------------------------------------------------- /examples/srcs/macos/CommandLine/Sources/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/macos/CommandLine/Sources/main.m -------------------------------------------------------------------------------- /examples/srcs/macos/CommandLineSwift/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/macos/CommandLineSwift/BUILD -------------------------------------------------------------------------------- /examples/srcs/macos/CommandLineSwift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/macos/CommandLineSwift/Info.plist -------------------------------------------------------------------------------- /examples/srcs/macos/CommandLineSwift/Sources/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/macos/CommandLineSwift/Sources/main.swift -------------------------------------------------------------------------------- /examples/srcs/macos/HelloWorld/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/macos/HelloWorld/BUILD -------------------------------------------------------------------------------- /examples/srcs/macos/HelloWorld/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/macos/HelloWorld/Info.plist -------------------------------------------------------------------------------- /examples/srcs/macos/HelloWorld/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/macos/HelloWorld/Resources/Main.storyboard -------------------------------------------------------------------------------- /examples/srcs/macos/HelloWorld/Sources/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/macos/HelloWorld/Sources/AppDelegate.h -------------------------------------------------------------------------------- /examples/srcs/macos/HelloWorld/Sources/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/macos/HelloWorld/Sources/AppDelegate.m -------------------------------------------------------------------------------- /examples/srcs/macos/HelloWorld/Sources/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/macos/HelloWorld/Sources/main.m -------------------------------------------------------------------------------- /examples/srcs/macos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/macos/README.md -------------------------------------------------------------------------------- /examples/srcs/shared/macros/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/shared/macros/BUILD.bazel -------------------------------------------------------------------------------- /examples/srcs/shared/macros/Stringify.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/shared/macros/Stringify.swift -------------------------------------------------------------------------------- /examples/srcs/shared/macros/StringifyClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/shared/macros/StringifyClient.swift -------------------------------------------------------------------------------- /examples/srcs/shared/macros/StringifyMacro.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/shared/macros/StringifyMacro.swift -------------------------------------------------------------------------------- /examples/srcs/shared/macros/StringifyMacroPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/shared/macros/StringifyMacroPlugin.swift -------------------------------------------------------------------------------- /examples/srcs/shared/module_a/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/shared/module_a/BUILD -------------------------------------------------------------------------------- /examples/srcs/shared/module_a/a.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/shared/module_a/a.m -------------------------------------------------------------------------------- /examples/srcs/shared/module_a/include/a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/shared/module_a/include/a.h -------------------------------------------------------------------------------- /examples/srcs/shared/module_a/sub_module_b/sub_b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/shared/module_a/sub_module_b/sub_b.h -------------------------------------------------------------------------------- /examples/srcs/shared/module_a/sub_module_b/sub_b.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/shared/module_a/sub_module_b/sub_b.m -------------------------------------------------------------------------------- /examples/srcs/shared/module_b/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/shared/module_b/BUILD -------------------------------------------------------------------------------- /examples/srcs/shared/module_b/module_b.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/shared/module_b/module_b.swift -------------------------------------------------------------------------------- /examples/srcs/shared/module_c/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/shared/module_c/BUILD -------------------------------------------------------------------------------- /examples/srcs/shared/module_c/module_c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/shared/module_c/module_c.cc -------------------------------------------------------------------------------- /examples/srcs/shared/module_c/module_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/shared/module_c/module_c.h -------------------------------------------------------------------------------- /examples/srcs/shared/module_d/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/shared/module_d/BUILD -------------------------------------------------------------------------------- /examples/srcs/shared/module_d/module_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/shared/module_d/module_d.h -------------------------------------------------------------------------------- /examples/srcs/shared/module_d/module_d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/shared/module_d/module_d.m -------------------------------------------------------------------------------- /examples/srcs/shared/module_d/module_d.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/examples/srcs/shared/module_d/module_d.swift -------------------------------------------------------------------------------- /extensions.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/extensions.bzl -------------------------------------------------------------------------------- /json.template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/json.template.py -------------------------------------------------------------------------------- /patches/file_filter.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/patches/file_filter.patch -------------------------------------------------------------------------------- /patches/remove-features-and-skip-syntax-only.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/patches/remove-features-and-skip-syntax-only.patch -------------------------------------------------------------------------------- /patches/subtarget.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/patches/subtarget.patch -------------------------------------------------------------------------------- /patches/swift_support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/patches/swift_support.patch -------------------------------------------------------------------------------- /plugin/zxz-moe-bis/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/plugin/zxz-moe-bis/.eslintrc.json -------------------------------------------------------------------------------- /plugin/zxz-moe-bis/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/plugin/zxz-moe-bis/.gitignore -------------------------------------------------------------------------------- /plugin/zxz-moe-bis/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/plugin/zxz-moe-bis/.vscodeignore -------------------------------------------------------------------------------- /plugin/zxz-moe-bis/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/plugin/zxz-moe-bis/CHANGELOG.md -------------------------------------------------------------------------------- /plugin/zxz-moe-bis/LICENSE: -------------------------------------------------------------------------------- 1 | ../../LICENSE -------------------------------------------------------------------------------- /plugin/zxz-moe-bis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/plugin/zxz-moe-bis/README.md -------------------------------------------------------------------------------- /plugin/zxz-moe-bis/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/plugin/zxz-moe-bis/icon.png -------------------------------------------------------------------------------- /plugin/zxz-moe-bis/lldb/file_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/plugin/zxz-moe-bis/lldb/file_monitor.py -------------------------------------------------------------------------------- /plugin/zxz-moe-bis/lldb/simulator_focus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/plugin/zxz-moe-bis/lldb/simulator_focus.py -------------------------------------------------------------------------------- /plugin/zxz-moe-bis/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/plugin/zxz-moe-bis/package-lock.json -------------------------------------------------------------------------------- /plugin/zxz-moe-bis/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/plugin/zxz-moe-bis/package.json -------------------------------------------------------------------------------- /plugin/zxz-moe-bis/src/buildTaskProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/plugin/zxz-moe-bis/src/buildTaskProvider.ts -------------------------------------------------------------------------------- /plugin/zxz-moe-bis/src/cmds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/plugin/zxz-moe-bis/src/cmds.ts -------------------------------------------------------------------------------- /plugin/zxz-moe-bis/src/commonTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/plugin/zxz-moe-bis/src/commonTypes.ts -------------------------------------------------------------------------------- /plugin/zxz-moe-bis/src/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/plugin/zxz-moe-bis/src/configuration.ts -------------------------------------------------------------------------------- /plugin/zxz-moe-bis/src/cpuProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/plugin/zxz-moe-bis/src/cpuProvider.ts -------------------------------------------------------------------------------- /plugin/zxz-moe-bis/src/debugConfigProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/plugin/zxz-moe-bis/src/debugConfigProvider.ts -------------------------------------------------------------------------------- /plugin/zxz-moe-bis/src/devicePicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/plugin/zxz-moe-bis/src/devicePicker.ts -------------------------------------------------------------------------------- /plugin/zxz-moe-bis/src/devicectl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/plugin/zxz-moe-bis/src/devicectl.ts -------------------------------------------------------------------------------- /plugin/zxz-moe-bis/src/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/plugin/zxz-moe-bis/src/error.ts -------------------------------------------------------------------------------- /plugin/zxz-moe-bis/src/eventEmitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/plugin/zxz-moe-bis/src/eventEmitter.ts -------------------------------------------------------------------------------- /plugin/zxz-moe-bis/src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/plugin/zxz-moe-bis/src/extension.ts -------------------------------------------------------------------------------- /plugin/zxz-moe-bis/src/inputer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/plugin/zxz-moe-bis/src/inputer.ts -------------------------------------------------------------------------------- /plugin/zxz-moe-bis/src/launchGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/plugin/zxz-moe-bis/src/launchGenerator.ts -------------------------------------------------------------------------------- /plugin/zxz-moe-bis/src/libdeps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/plugin/zxz-moe-bis/src/libdeps.ts -------------------------------------------------------------------------------- /plugin/zxz-moe-bis/src/libpath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/plugin/zxz-moe-bis/src/libpath.ts -------------------------------------------------------------------------------- /plugin/zxz-moe-bis/src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/plugin/zxz-moe-bis/src/logger.ts -------------------------------------------------------------------------------- /plugin/zxz-moe-bis/src/picker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/plugin/zxz-moe-bis/src/picker.ts -------------------------------------------------------------------------------- /plugin/zxz-moe-bis/src/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/plugin/zxz-moe-bis/src/services.ts -------------------------------------------------------------------------------- /plugin/zxz-moe-bis/src/simulatorFocus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/plugin/zxz-moe-bis/src/simulatorFocus.ts -------------------------------------------------------------------------------- /plugin/zxz-moe-bis/src/simulators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/plugin/zxz-moe-bis/src/simulators.ts -------------------------------------------------------------------------------- /plugin/zxz-moe-bis/src/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/plugin/zxz-moe-bis/src/sync.ts -------------------------------------------------------------------------------- /plugin/zxz-moe-bis/src/targets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/plugin/zxz-moe-bis/src/targets.ts -------------------------------------------------------------------------------- /plugin/zxz-moe-bis/src/test/runTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/plugin/zxz-moe-bis/src/test/runTest.ts -------------------------------------------------------------------------------- /plugin/zxz-moe-bis/src/test/suite/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/plugin/zxz-moe-bis/src/test/suite/extension.test.ts -------------------------------------------------------------------------------- /plugin/zxz-moe-bis/src/test/suite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/plugin/zxz-moe-bis/src/test/suite/index.ts -------------------------------------------------------------------------------- /plugin/zxz-moe-bis/src/treeProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/plugin/zxz-moe-bis/src/treeProvider.ts -------------------------------------------------------------------------------- /plugin/zxz-moe-bis/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/plugin/zxz-moe-bis/src/utils.ts -------------------------------------------------------------------------------- /plugin/zxz-moe-bis/src/variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/plugin/zxz-moe-bis/src/variables.ts -------------------------------------------------------------------------------- /plugin/zxz-moe-bis/src/workspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/plugin/zxz-moe-bis/src/workspace.ts -------------------------------------------------------------------------------- /plugin/zxz-moe-bis/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/plugin/zxz-moe-bis/tsconfig.json -------------------------------------------------------------------------------- /plugin/zxz-moe-bis/vsc-extension-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/plugin/zxz-moe-bis/vsc-extension-quickstart.md -------------------------------------------------------------------------------- /providers.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/providers.bzl -------------------------------------------------------------------------------- /refresh_compile_commands.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/refresh_compile_commands.bzl -------------------------------------------------------------------------------- /refresh_launch_json.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/refresh_launch_json.bzl -------------------------------------------------------------------------------- /repositories.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/repositories.bzl -------------------------------------------------------------------------------- /template_generator.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinzhengzhang/bis/HEAD/template_generator.bzl -------------------------------------------------------------------------------- /version.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo 0.5.1 3 | --------------------------------------------------------------------------------