The A32NX & A380X Project are community driven open source projects to create free Airbus aircraft in Microsoft Flight Simulator that are as close to reality as possible.
This report presents the forensic synthetic code analysis of flybywiresim/aircraft, a TypeScript project with 5,382 GitHub stars. SynthScan v2.0 examined 856,938 lines of code across 3037 source files, recording 1262 pattern matches distributed across 11 syntactic categories. The overall adjusted score of 4.6 places this repository in the Likely human-written band.
The scanner applied 160+ deterministic lexical heuristics, multi-line block detectors, abstract syntax tree depth profilers, and a cross-file Jaccard similarity matrix to construct a statistically normalised synthetic code estimate. All matches are individually weighted by severity coefficient and contextual multiplier before summation, and the resulting headline score is temporally discounted to account for the repository's development history relative to the commercial emergence of large language model coding tooling (November 2022 onward).
Longitudinal tracking requires multiple scan runs. Once this repository is re-scanned after new commits land, this chart will visualise how the synthetic code signal evolves over time — enabling you to detect whether AI authorship is growing, stabilising, or being actively corrected by human engineers.
Classifies detected patterns by their diagnostic confidence and structural impact. CRITICAL patterns (coefficient 10) represent definitive synthetic signatures — hallucinated imports, explicit LLM attribution metadata — virtually never produced by human authors. HIGH (5) indicates strong structural tells such as cross-file repetition or cross-linguistic idioms. MEDIUM (2) covers recognisable conversational padding and AI-specific vocabulary. LOW (1) captures subtle indicators like tautological comments and generic boilerplate that require density to carry independent signal.
This horizontal bar chart decomposes the repository's raw synthetic code score by top-level directory, allowing you to pinpoint precisely which modules or components carry the highest AI authorship density. Directories with disproportionately high scores relative to their size warrant targeted manual review: concentrated AI signatures often trace back to mass-generated configuration layers, auto-ported test suites, LLM-scaffolded boilerplate classes, or entire subsystems authored under heavy copilot assistance. Use this view to prioritise your human code-review effort.
The scanner identified 1262 distinct pattern matches across 11 syntactic categories. Each entry below represents a discrete location in the source code where the engine recorded a statistically significant AI authorship indicator. Expand any category row to inspect the individual file paths, line numbers, code snippets, and the lexical context (CODE, COMMENT, or STRING) in which each match was detected.
Reading the findings table: The Severity column indicates the diagnostic confidence level (CRITICAL / HIGH / MEDIUM / LOW). The Context column identifies whether the match occurred inside executable code, an inline comment, or a string literal — comment-context matches receive a ×1.5 weight because LLMs systematically over-annotate. The ⚡ bolt icon marks clustered matches: three or more patterns within a 10-line window, each receiving an additional ×1.5 density multiplier as dense clusters constitute far stronger evidence of synthetic authorship than isolated hits.
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| CRITICAL⚡ | fbw-common/src/systems/datalink/atc/src/ATC.ts | 121 | this.digitalInputs.FlightRoute.lastWaypoint.altitude.toString(), | CODE |
| CRITICAL⚡ | fbw-common/src/systems/datalink/atc/src/ATC.ts | 125 | this.digitalInputs.PresentPosition.altitude.value.toString(), | CODE |
| CRITICAL⚡ | fbw-common/src/systems/datalink/atc/src/ATC.ts | 129 | this.digitalInputs.PresentPosition.altitude.value.toString(), | CODE |
| CRITICAL⚡ | fbw-common/src/systems/datalink/atc/src/ATC.ts | 227 | this.digitalInputs.PresentDynamics.computedAirspeed.value.toString(), | CODE |
| CRITICAL⚡ | fbw-common/src/systems/datalink/atc/src/ATC.ts | 229 | const gs = InputValidation.formatScratchpadSpeed(this.digitalInputs.PresentDynamics.groundSpeed.value.toString()); | CODE |
| CRITICAL⚡ | fbw-common/src/systems/datalink/atc/src/ATC.ts | 235 | const hdg = this.digitalInputs.PresentPosition.heading.value.toString(); | CODE |
| CRITICAL⚡ | fbw-common/src/systems/datalink/atc/src/ATC.ts | 241 | const trk = this.digitalInputs.PresentPosition.track.value.toString(); | CODE |
| CRITICAL | …k/common/src/components/UplinkMessageInterpretation.ts | 194 | atc.digitalInputs.AutopilotData.selectedMach.value.toString(), | CODE |
| CRITICAL | …ms/instruments/src/MCDU/legacy/A32NX_FMCMainDisplay.ts | 2130 | const newLevel = this.flightPlanService.active.performanceData.cruiseFlightLevel.get(); | CODE |
| CRITICAL⚡ | …ms/instruments/src/MCDU/legacy/A32NX_FMCMainDisplay.ts | 2868 | return this.flightPlanService.active.performanceData.v1.get(); | CODE |
| CRITICAL⚡ | …ms/instruments/src/MCDU/legacy/A32NX_FMCMainDisplay.ts | 2876 | return this.flightPlanService.active.performanceData.vr.get(); | CODE |
| CRITICAL⚡ | …ms/instruments/src/MCDU/legacy/A32NX_FMCMainDisplay.ts | 2884 | return this.flightPlanService.active.performanceData.v2.get(); | CODE |
| CRITICAL | …ms/instruments/src/MCDU/legacy/A32NX_FMCMainDisplay.ts | 5507 | const ett = this.flightPlanService.active.performanceData.estimatedTakeoffTime.get(); | CODE |
| CRITICAL | …ms/instruments/src/MCDU/legacy/A32NX_FMCMainDisplay.ts | 5982 | const ett = this.flightPlanService.active.performanceData.estimatedTakeoffTime.get(); | CODE |
| CRITICAL | …ms/instruments/src/MCDU/legacy/A32NX_FMCMainDisplay.ts | 5983 | if (ett !== null && !this.flightPlanService.active.performanceData.estimatedTakeoffTimeExpired.get()) { | CODE |
| CRITICAL | …stems/instruments/src/OANC/Components/DropdownMenu.tsx | 210 | this.inputFieldRef.instance.textInputRef.instance.focus(); | CODE |
| CRITICAL | …stems/instruments/src/OANC/Components/DropdownMenu.tsx | 213 | this.inputFieldRef.instance.textInputRef.instance.blur(); | CODE |
| CRITICAL | …nx/src/systems/fmgc/src/guidance/GuidanceController.ts | 232 | apprMsg = this.flightPlanService.active.originDeparture.ident.padEnd(this.approachIdentSize); | CODE |
| CRITICAL | …/src/systems/fmgc/src/guidance/lnav/PseudoWaypoints.ts | 130 | ? this.guidanceController.vnavDriver.ndProfile.checkpoints.filter(isCheckpointForNdPwp) | CODE |
| CRITICAL | …/guidance/vnav/VerticalProfileComputationParameters.ts | 116 | cruiseAltitude: this.flightPlanService.active.performanceData.cruiseFlightLevel.get() | CODE |
| CRITICAL | …/guidance/vnav/VerticalProfileComputationParameters.ts | 117 | ? this.flightPlanService.active.performanceData.cruiseFlightLevel.get() * 100 | CODE |
| CRITICAL⚡ | …es/NssAvncs/CompanyCom/OitAvncsCompanyComFlightLog.tsx | 32 | private readonly outBlockTimeText = this.props.container.ansu.outBlockTime.map((t) => AnsuOps.formatDateTime(t)); | CODE |
| CRITICAL⚡ | …es/NssAvncs/CompanyCom/OitAvncsCompanyComFlightLog.tsx | 33 | private readonly offBlockTimeText = this.props.container.ansu.offBlockTime.map((t) => AnsuOps.formatDateTime(t)); | CODE |
| CRITICAL⚡ | …es/NssAvncs/CompanyCom/OitAvncsCompanyComFlightLog.tsx | 34 | private readonly onBlockTimeText = this.props.container.ansu.onBlockTime.map((t) => AnsuOps.formatDateTime(t)); | CODE |
| CRITICAL⚡ | …es/NssAvncs/CompanyCom/OitAvncsCompanyComFlightLog.tsx | 35 | private readonly inBlockTimeText = this.props.container.ansu.inBlockTime.map((t) => AnsuOps.formatDateTime(t)); | CODE |
| CRITICAL | …es/NssAvncs/CompanyCom/OitAvncsCompanyComFlightLog.tsx | 91 | private readonly flightTimeText = this.props.container.ansu.flightTime.map((t) => { | CODE |
| CRITICAL | …es/NssAvncs/CompanyCom/OitAvncsCompanyComFlightLog.tsx | 100 | private readonly blockTimeText = this.props.container.ansu.blockTime.map((t) => { | CODE |
| CRITICAL | fbw-a380x/src/systems/instruments/src/ND/instrument.tsx | 347 | this.oansRef.instance.labelContainerRef.instance.addEventListener('dblclick', (e) => { | CODE |
| CRITICAL | fbw-a380x/src/systems/instruments/src/ND/instrument.tsx | 355 | this.oansRef.instance.labelContainerRef.instance.addEventListener('click', () => { | CODE |
| CRITICAL | fbw-a380x/src/systems/instruments/src/MFD/MFD.tsx | 236 | this.props.fmcService.master.acInterface.onEvent(eventName); | CODE |
| CRITICAL⚡ | …ystems/instruments/src/MFD/FMC/FmcAircraftInterface.ts | 479 | this.flightPlanService.active.performanceData.transitionAltitude.get() ?? 0, // as altitude | CODE |
| CRITICAL⚡ | …ystems/instruments/src/MFD/FMC/FmcAircraftInterface.ts | 480 | this.flightPlanService.active.performanceData.transitionAltitude.get() !== null && | CODE |
| CRITICAL⚡ | …ystems/instruments/src/MFD/FMC/FmcAircraftInterface.ts | 481 | this.flightPlanService.active.performanceData.transitionAltitude.get() !== undefined | CODE |
| CRITICAL⚡ | …ystems/instruments/src/MFD/FMC/FmcAircraftInterface.ts | 490 | this.flightPlanService.active.performanceData.transitionLevel.get() ?? 0, // as FL | CODE |
| CRITICAL⚡ | …ystems/instruments/src/MFD/FMC/FmcAircraftInterface.ts | 491 | this.flightPlanService.active.performanceData.transitionLevel.get() !== null && | CODE |
| CRITICAL⚡ | …ystems/instruments/src/MFD/FMC/FmcAircraftInterface.ts | 492 | this.flightPlanService.active.performanceData.transitionLevel.get() !== undefined | CODE |
| CRITICAL⚡ | …ystems/instruments/src/MFD/FMC/FmcAircraftInterface.ts | 507 | if (this.flightPhase.get() > FmgcFlightPhase.Preflight && !this.flightPlanService.active.performanceData.v2.get()) { | CODE |
| CRITICAL⚡ | …ystems/instruments/src/MFD/FMC/FmcAircraftInterface.ts | 515 | this.flightPlanService.active.performanceData.v1.get() ?? NaN, | CODE |
| CRITICAL⚡ | …ystems/instruments/src/MFD/FMC/FmcAircraftInterface.ts | 520 | this.flightPlanService.active.performanceData.v2.get() ?? NaN, | CODE |
| CRITICAL⚡ | …ystems/instruments/src/MFD/FMC/FmcAircraftInterface.ts | 525 | this.flightPlanService.active.performanceData.vr.get() ?? NaN, | CODE |
| CRITICAL⚡ | …ystems/instruments/src/MFD/FMC/FmcAircraftInterface.ts | 535 | this.flightPlanService.active.performanceData.takeoffFlaps.get() === null || | CODE |
| CRITICAL⚡ | …ystems/instruments/src/MFD/FMC/FmcAircraftInterface.ts | 552 | (this.flightPlanService.active.performanceData.v1.get() ?? Infinity) < Math.trunc(A380SpeedsUtils.getVmcg(zp)) || | CODE |
| CRITICAL⚡ | …ystems/instruments/src/MFD/FMC/FmcAircraftInterface.ts | 553 | (this.flightPlanService.active.performanceData.vr.get() ?? Infinity) < | CODE |
| CRITICAL⚡ | …ystems/instruments/src/MFD/FMC/FmcAircraftInterface.ts | 555 | (this.flightPlanService.active.performanceData.v2.get() ?? Infinity) < | CODE |
| CRITICAL⚡ | …ystems/instruments/src/MFD/FMC/FmcAircraftInterface.ts | 571 | const v1Speed = this.flightPlanService.active.performanceData.v1.get(); | CODE |
| CRITICAL⚡ | …ystems/instruments/src/MFD/FMC/FmcAircraftInterface.ts | 572 | const vRSpeed = this.flightPlanService.active.performanceData.vr.get(); | CODE |
| CRITICAL⚡ | …ystems/instruments/src/MFD/FMC/FmcAircraftInterface.ts | 573 | const v2Speed = this.flightPlanService.active.performanceData.v2.get(); | CODE |
| CRITICAL⚡ | …ystems/instruments/src/MFD/FMC/FmcAircraftInterface.ts | 588 | !this.flightPlanService.active.performanceData.v1.get() || | CODE |
| CRITICAL⚡ | …ystems/instruments/src/MFD/FMC/FmcAircraftInterface.ts | 589 | !this.flightPlanService.active.performanceData.vr.get() || | CODE |
| CRITICAL⚡ | …ystems/instruments/src/MFD/FMC/FmcAircraftInterface.ts | 590 | !this.flightPlanService.active.performanceData.v2.get(); | CODE |
| CRITICAL | …ystems/instruments/src/MFD/FMC/FmcAircraftInterface.ts | 721 | const mda = this.flightPlanService.active.performanceData.approachBaroMinimum.get(); | CODE |
| CRITICAL | …ystems/instruments/src/MFD/FMC/FmcAircraftInterface.ts | 722 | const dh = this.flightPlanService.active.performanceData.approachRadioMinimum.get(); | CODE |
| CRITICAL | …ystems/instruments/src/MFD/FMC/FmcAircraftInterface.ts | 1204 | const appWindDirection = this.flightPlanService.active.performanceData.approachWindDirection.get() ?? 0; | CODE |
| CRITICAL | …ystems/instruments/src/MFD/FMC/FmcAircraftInterface.ts | 1205 | const appWindSpeed = this.flightPlanService.active.performanceData.approachWindMagnitude.get() ?? 0; | CODE |
| CRITICAL | …ystems/instruments/src/MFD/FMC/FmcAircraftInterface.ts | 1235 | !approach || !this.flightPlanService.active.performanceData.approachFlapsThreeSelected.get() | CODE |
| CRITICAL | …ystems/instruments/src/MFD/FMC/FmcAircraftInterface.ts | 1700 | const cruiseLevel = this.flightPlanService.active.performanceData.cruiseFlightLevel.get(); | CODE |
| CRITICAL | …ystems/instruments/src/MFD/FMC/FmcAircraftInterface.ts | 1758 | const cruiseLevel = this.flightPlanService.active.performanceData.cruiseFlightLevel.get(); | CODE |
| CRITICAL | …ystems/instruments/src/MFD/FMC/FmcAircraftInterface.ts | 1860 | this.flightPlanService.active.performanceData.cruiseFlightLevel.get(), | CODE |
| CRITICAL | …ystems/instruments/src/MFD/FMC/FmcAircraftInterface.ts | 2159 | const minFuelAtDestination = this.flightPlanService.active.performanceData.minimumDestinationFuelOnBoard.get(); | CODE |
| CRITICAL | …ms/instruments/src/MFD/FMC/FlightManagementComputer.ts | 1264 | const preselectedCruiseSpeed = this.flightPlanInterface.active.performanceData.preselectedCruiseSpeed.get(); | CODE |
| 207 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | tools/fdr2csv/a320_wrapper.hpp | 1 | #include "../../fbw-a32nx/src/wasm/fbw_a320/src/model/ElacComputer_types.h" | COMMENT |
| LOW | tools/fdr2csv/a380_wrapper.hpp | 1 | #include "../../fbw-a380x/src/wasm/fbw_a380/src/interface/FuelSystemData.h" | COMMENT |
| LOW | tools/fdr2csv/src/error.rs | 1 | use std::fmt::{self, Display}; | COMMENT |
| LOW | tools/fdr2csv/src/main.rs | 21 | A380, | COMMENT |
| LOW | fbw-common/src/wasm/utils/MathUtils.h | 1 | // Copyright (c) 2024 FlyByWire Simulations | COMMENT |
| LOW | …on/src/wasm/cpp-msfs-framework/Example/ExampleModule.h | 1 | // Copyright (c) 2023 FlyByWire Simulations | COMMENT |
| LOW | …/src/wasm/cpp-msfs-framework/Example/ExampleModule.cpp | 1 | // Copyright (c) 2023 FlyByWire Simulations | COMMENT |
| LOW | …/src/wasm/cpp-msfs-framework/Example/ExampleModule.cpp | 241 | dataManager->addKeyEventCallback(KEY_BEACON_LIGHTS_SET, [&](DWORD param0, DWORD param1, DWORD param2, DWORD param3 | COMMENT |
| LOW | …/src/wasm/cpp-msfs-framework/Example/ExampleModule.cpp | 301 | bool ExampleModule::update([[maybe_unused]] sGaugeDrawData* pData) { | COMMENT |
| LOW | …/src/wasm/cpp-msfs-framework/Example/ExampleModule.cpp | 321 | // } | COMMENT |
| LOW | …/src/wasm/cpp-msfs-framework/MsfsHandler/MsfsHandler.h | 1 | // Copyright (c) 2023 FlyByWire Simulations | COMMENT |
| LOW | …/src/wasm/cpp-msfs-framework/MsfsHandler/DataManager.h | 1 | // Copyright (c) 2023 FlyByWire Simulations | COMMENT |
| LOW | …rc/wasm/cpp-msfs-framework/MsfsHandler/MsfsHandler.cpp | 1 | // Copyright (c) 2023 FlyByWire Simulations | COMMENT |
| LOW | …msfs-framework/MsfsHandler/DataTypes/SimObjectBase.hpp | 1 | // Copyright (c) 2023 FlyByWire Simulations | COMMENT |
| LOW | …cpp-msfs-framework/MsfsHandler/DataTypes/ClientEvent.h | 1 | // Copyright (c) 2023 FlyByWire Simulations | COMMENT |
| LOW | …ework/MsfsHandler/DataTypes/ClientDataAreaVariable.hpp | 1 | // Copyright (c) 2023 FlyByWire Simulations | COMMENT |
| LOW | …mework/MsfsHandler/DataTypes/ManagedDataObjectBase.hpp | 1 | // Copyright (c) 2023 FlyByWire Simulations | COMMENT |
| LOW | …common/src/wasm/cpp-msfs-framework/lib/ScopedTimer.hpp | 1 | // Copyright (c) 2023 FlyByWire Simulations | COMMENT |
| LOW | fbw-common/src/wasm/cpp-msfs-framework/lib/logging.h | 21 | */ | COMMENT |
| LOW | fbw-common/src/wasm/cpp-msfs-framework/lib/logging.h | 41 | #define LOG_ERROR(msg) logger->error(msg) | COMMENT |
| LOW | fbw-common/src/wasm/cpp-msfs-framework/lib/logging.h | 61 | #define LOG_INFO_BLOCK(block) ; | COMMENT |
| LOW | …mmon/src/wasm/cpp-msfs-framework/lib/ProfileBuffer.hpp | 1 | // Copyright (c) 2023 FlyByWire Simulations | COMMENT |
| LOW | …mon/src/wasm/cpp-msfs-framework/lib/SimpleProfiler.hpp | 1 | // Copyright (c) 2023 FlyByWire Simulations | COMMENT |
| LOW | fbw-common/src/wasm/cpp-msfs-framework/lib/inih/ini.h | 21 | * | COMMENT |
| LOW | fbw-common/src/wasm/cpp-msfs-framework/lib/inih/ini.h | 41 | // changes have been made and update the file accordingly. If you only need to | COMMENT |
| LOW | fbw-common/src/wasm/cpp-msfs-framework/lib/inih/ini.h | 61 | // | COMMENT |
| LOW | fbw-common/src/wasm/cpp-msfs-framework/lib/inih/ini.h | 81 | /////////////////////////////////////////////////////////////////////////////// | COMMENT |
| LOW | …-common/src/wasm/cpp-msfs-framework/lib/inih/ini_fbw.h | 21 | * | COMMENT |
| LOW | …-common/src/wasm/cpp-msfs-framework/lib/inih/ini_fbw.h | 41 | // Files are read on demand, upon which data is kept in memory and the file | COMMENT |
| LOW | …-common/src/wasm/cpp-msfs-framework/lib/inih/ini_fbw.h | 61 | // | COMMENT |
| LOW | …-common/src/wasm/cpp-msfs-framework/lib/inih/ini_fbw.h | 81 | /////////////////////////////////////////////////////////////////////////////// | COMMENT |
| LOW | …w-common/src/wasm/cpp-msfs-framework/lib/fmt/ostream.h | 1 | // Formatting library for C++ - std::ostream support | COMMENT |
| LOW | …ommon/src/wasm/cpp-msfs-framework/lib/fmt/format-inl.h | 1 | // Formatting library for C++ - implementation | COMMENT |
| LOW | …ommon/src/wasm/cpp-msfs-framework/lib/fmt/format-inl.h | 1281 | // Compute k and beta. | COMMENT |
| LOW | fbw-common/src/wasm/cpp-msfs-framework/lib/fmt/ranges.h | 1 | // Formatting library for C++ - range and tuple support | COMMENT |
| LOW | fbw-common/src/wasm/cpp-msfs-framework/lib/fmt/xchar.h | 1 | // Formatting library for C++ - optional wchar_t and exotic character support | COMMENT |
| LOW | fbw-common/src/wasm/cpp-msfs-framework/lib/fmt/core.h | 1 | // This file is only provided for compatibility and may be removed in future | COMMENT |
| LOW | fbw-common/src/wasm/cpp-msfs-framework/lib/fmt/chrono.h | 1 | // Formatting library for C++ - chrono support | COMMENT |
| LOW | fbw-common/src/wasm/cpp-msfs-framework/lib/fmt/chrono.h | 21 | #endif | COMMENT |
| LOW | fbw-common/src/wasm/cpp-msfs-framework/lib/fmt/chrono.h | 41 | # define FMT_USE_UTC_TIME 0 | COMMENT |
| LOW | fbw-common/src/wasm/cpp-msfs-framework/lib/fmt/os.h | 1 | // Formatting library for C++ - optional OS-specific functionality | COMMENT |
| LOW | fbw-common/src/wasm/cpp-msfs-framework/lib/fmt/os.h | 21 | # endif | COMMENT |
| LOW | fbw-common/src/wasm/cpp-msfs-framework/lib/fmt/os.h | 41 | # if defined(_WIN32) && !defined(__MINGW32__) | COMMENT |
| LOW | fbw-common/src/wasm/cpp-msfs-framework/lib/fmt/args.h | 1 | // Formatting library for C++ - dynamic argument lists | COMMENT |
| LOW | fbw-common/src/wasm/cpp-msfs-framework/lib/fmt/printf.h | 1 | // Formatting library for C++ - legacy printf implementation | COMMENT |
| LOW | …w-common/src/wasm/cpp-msfs-framework/lib/fmt/compile.h | 1 | // Formatting library for C++ - experimental format string compilation | COMMENT |
| LOW | fbw-common/src/wasm/cpp-msfs-framework/lib/fmt/format.h | 41 | #include "base.h" | COMMENT |
| LOW | fbw-common/src/wasm/cpp-msfs-framework/lib/fmt/format.h | 61 | COMMENT | |
| LOW | fbw-common/src/wasm/cpp-msfs-framework/lib/fmt/format.h | 81 | # elif (FMT_MSC_VERSION >= 1929) && !FMT_CLANG_VERSION | COMMENT |
| LOW | fbw-common/src/wasm/cpp-msfs-framework/lib/fmt/format.h | 121 | template <typename Exception> inline void do_throw(const Exception& x) { | COMMENT |
| LOW | fbw-common/src/wasm/cpp-msfs-framework/lib/fmt/format.h | 141 | # define FMT_MAYBE_UNUSED [[maybe_unused]] | COMMENT |
| LOW | fbw-common/src/wasm/cpp-msfs-framework/lib/fmt/format.h | 161 | // Defining FMT_REDUCE_INT_INSTANTIATIONS to 1, will reduce the number of | COMMENT |
| LOW | fbw-common/src/wasm/cpp-msfs-framework/lib/fmt/format.h | 181 | // https://github.com/fmtlib/fmt/issues/2510. | COMMENT |
| LOW | fbw-common/src/wasm/cpp-msfs-framework/lib/fmt/format.h | 201 | !defined(FMT_BUILTIN_CTZLL) | COMMENT |
| LOW | fbw-common/src/wasm/cpp-msfs-framework/lib/fmt/format.h | 761 | !std::is_same<T, char>::value && | COMMENT |
| LOW | fbw-common/src/wasm/cpp-msfs-framework/lib/fmt/format.h | 3421 | // strictly larger than 1/2. | COMMENT |
| LOW | fbw-common/src/wasm/cpp-msfs-framework/lib/fmt/format.h | 4421 | COMMENT | |
| LOW | fbw-common/src/wasm/cpp-msfs-framework/lib/fmt/std.h | 1 | // Formatting library for C++ - formatters for standard library types | COMMENT |
| LOW | fbw-common/src/wasm/cpp-msfs-framework/lib/fmt/std.h | 21 | # include <thread> | COMMENT |
| LOW | fbw-common/src/wasm/cpp-msfs-framework/lib/fmt/std.h | 41 | # if FMT_CPLUSPLUS > 201703L && FMT_HAS_INCLUDE(<source_location>) | COMMENT |
| 391 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | …w-common/src/typings/fs-base-ui/html_ui/JS/common.d.ts | 319 | * Generates a lorem ipsum text of the given length. | COMMENT |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 9 | [[maybe_unused]] static std::string longText = R"(Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonu | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 9 | [[maybe_unused]] static std::string longText = R"(Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonu | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 11 | Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nul | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 11 | Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nul | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 15 | Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assu | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 15 | Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assu | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 19 | At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ip | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 19 | At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ip | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 21 | Consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam vo | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 21 | Consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam vo | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 23 | Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nul | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 23 | Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nul | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 27 | Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assu | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 27 | Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assu | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 31 | At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ip | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 31 | At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ip | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 33 | Consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam vo | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 33 | Consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam vo | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 35 | Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nul | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 35 | Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nul | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 39 | Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assu | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 39 | Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assu | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 43 | At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ip | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 43 | At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ip | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 45 | Consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam vo | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 45 | Consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam vo | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 47 | Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nul | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 47 | Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nul | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 51 | Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assu | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 51 | Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assu | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 55 | At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ip | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 55 | At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ip | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 57 | Consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam vo | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 57 | Consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam vo | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 59 | Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nul | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 59 | Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nul | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 63 | Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assu | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 63 | Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assu | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 67 | At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ip | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 67 | At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ip | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 69 | Consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam vo | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 69 | Consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam vo | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 71 | Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nul | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 71 | Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nul | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 75 | Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assu | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 75 | Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assu | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 79 | At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ip | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 79 | At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ip | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 81 | Consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam vo | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 81 | Consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam vo | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 83 | Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nul | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 83 | Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nul | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 87 | Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assu | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 87 | Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assu | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 91 | At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ip | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 91 | At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ip | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 93 | Consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam vo | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 93 | Consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam vo | CODE |
| LOW⚡ | …-common/src/wasm/cpp-msfs-framework/Example/longtext.h | 95 | Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nul | CODE |
| 353 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | tools/heapdump/app.py | 14 | class MyRequestHandler(SimpleHTTPRequestHandler): | CODE |
| LOW | …w-common/src/typings/fs-base-ui/html_ui/JS/Flight.d.ts | 202 | function RegisterGameFlightListener(callback?: () => void): GameFlightListener; | CODE |
| LOW | …w-common/src/typings/fs-base-ui/html_ui/JS/Flight.d.ts | 221 | function RegisterFlightPlanListener(callback?: () => void): FlightPlanListener; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 318 | function getStallProtectionMinSpeed(): Knots | null; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 319 | function getStallProtectionMaxSpeed(): Knots | null; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 329 | function getAutoPilotAirspeedManaged(): boolean; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 330 | function getAutoPilotAirspeedSelected(): boolean; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 331 | function getAutoPilotAirspeedHoldActive(isManaged?: boolean): boolean | null; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 332 | function getAutoPilotAirspeedHoldValue(): Knots | null; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 333 | function getAutoPilotSelectedAirspeedHoldValue(): Knots | null; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 334 | function getAutoPilotManagedAirspeedHoldValue(): Knots | null; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 335 | function getAutoPilotMachModeActive(): boolean | null; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 336 | function getAutoPilotMachHoldValue(): number | null; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 337 | function getAutoPilotSelectedMachHoldValue(): number | null; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 338 | function getAutoPilotManagedMachHoldValue(): number | null; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 339 | function getAutoPilotHeadingManaged(): boolean; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 340 | function getAutoPilotHeadingSelected(): boolean; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 341 | function getAutoPilotHeadingLockActive(): boolean | null; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 342 | function getAutoPilotHeadingLockValue(radians?: boolean): Radians | Degrees | null; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 343 | function getAutoPilotSelectedHeadingLockValue(radians?: boolean): Radians | Degrees | null; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 344 | function getAutoPilotAltitudeManaged(): boolean; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 345 | function getAutoPilotAltitudeSelected(): boolean; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 346 | function getAutoPilotAltitudeArmed(): boolean | null; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 347 | function getAutoPilotAltitudeLockActive(): boolean | null; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 352 | function getAutoPilotAltitudeLockValue(units?: string): number | null; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 356 | function getAutoPilotSelectedAltitudeLockValue(units? : string): number | null; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 360 | function getAutoPilotDisplayedAltitudeLockValue(units?: string): number; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 361 | function getAutoPilotAltitudeLockUnits(): 'feet'; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 362 | function getAutoPilotVerticalSpeedHoldActive(): boolean | null; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 363 | function getAutoPilotVerticalSpeedHoldValue(): FeetPerMinute | null; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 364 | function getAutoPilotSelectedVerticalSpeedHoldValue(): FeetPerMinute | null; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 365 | function getAutoPilotDisplayedVerticalSpeedHoldValue(): FeetPerMinute | null; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 366 | function getAutoPilotLateralModeActive(): boolean | null; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 367 | function getAutoPilotFlightDirectorActive(fdIndex: number): boolean | null; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 368 | function getAutoPilotFlightDirectorBankValue(): Degrees | null; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 369 | function getAutoPilotFlightDirectorPitchValue(): Degrees | null; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 373 | function getAutoPilotFlightPathAngle(): Degrees | null; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 374 | function getAutoPilotThrottleArmed(index?: number): boolean | null; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 375 | function getAutoPilotThrottleLocked(): boolean | null; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 376 | function getAutoPilotThrottleActive(index?: number): boolean | null; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 382 | function getAutoPilotTRKFPAModeActive(): boolean | null; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 383 | function getAutoPilotTRKModeActive(): boolean | null; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 384 | function getAutoPilotFPAModeActive(): boolean | null; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 385 | function getAutoPilotGlideslopeActive(): boolean | null; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 386 | function getAutoPilotGlideslopeArm(): boolean | null; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 387 | function getAutoPilotGlideslopeHold(): boolean | null; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 389 | function getAutoPilotApproachLoaded(): boolean | null; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 391 | function getAutoPilotIsHeadingAligned(): boolean | null; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 462 | function getPressurisationCabinAltitude(): Feet | null; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 463 | function getPressurisationCabinAltitudeGoal(): Feet | null; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 464 | function getPressurisationCabinAltitudeRate(): Feet | null; | CODE |
| LOW⚡ | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 465 | function getPressurisationDifferential(): PressurePerSquareInch | null; | CODE |
| LOW | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 404 | function getEngineThrottleMaxThrust(engineIndex: number): number; | CODE |
| LOW | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 405 | function getEngineThrustTakeOffMode(engineIndex: number): number | null; | CODE |
| LOW | …common/src/typings/fs-base-ui/html_ui/JS/SimPlane.d.ts | 439 | function getThrustReductionAltitude(): Feet | null; | CODE |
| LOW | …w-common/src/typings/fs-base-ui/html_ui/JS/simvar.d.ts | 390 | function LogSimVarValueHistoryByTimePerFrame(): void; | CODE |
| LOW | …w-common/src/typings/fs-base-ui/html_ui/JS/simvar.d.ts | 395 | function GetSimVarValueFastRegString(registeredID: number): any; | CODE |
| LOW | …w-common/src/typings/fs-base-ui/html_ui/JS/common.d.ts | 116 | function cancelAllRequestAnimationFrame(): void; | CODE |
| LOW | …w-common/src/typings/fs-base-ui/html_ui/JS/common.d.ts | 398 | function SetBlurredBackgroundRatio(val: any): void; | CODE |
| LOW | …w-common/src/typings/fs-base-ui/html_ui/JS/common.d.ts | 429 | function LaunchFlowEventToGlobalFlow(eventName: string, ...args: any[]): void; | CODE |
| 45 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | …common/src/wasm/cpp-msfs-framework/test/CMakeLists.txt | 13 | # ==================================================================== | COMMENT |
| MEDIUM | …common/src/wasm/cpp-msfs-framework/test/CMakeLists.txt | 15 | # ==================================================================== | COMMENT |
| MEDIUM⚡ | …common/src/wasm/cpp-msfs-framework/test/CMakeLists.txt | 26 | # ==================================================================== | COMMENT |
| MEDIUM⚡ | …common/src/wasm/cpp-msfs-framework/test/CMakeLists.txt | 28 | # ==================================================================== | COMMENT |
| MEDIUM⚡ | …common/src/wasm/cpp-msfs-framework/test/CMakeLists.txt | 33 | # ==================================================================== | COMMENT |
| MEDIUM⚡ | …common/src/wasm/cpp-msfs-framework/test/CMakeLists.txt | 35 | # ==================================================================== | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | …ommon/src/wasm/cpp-msfs-framework/lib/fmt/format-inl.h | 1249 | // Step 1: integer promotion & Schubfach multiplier calculation. | COMMENT |
| LOW | …ommon/src/wasm/cpp-msfs-framework/lib/fmt/format-inl.h | 1304 | // Step 2: Try larger divisor; remove trailing zeros if necessary. | COMMENT |
| LOW | …ommon/src/wasm/cpp-msfs-framework/lib/fmt/format-inl.h | 1336 | // Step 3: Find the significand with the smaller divisor. | COMMENT |
| LOW | …sm/systems/a320_systems/src/pneumatic/wing_anti_ice.rs | 245 | // Even if the button is pushed, we need to check if either | COMMENT |
| LOW | …sm/systems/a320_systems/src/pneumatic/wing_anti_ice.rs | 247 | // Also, we need to check if the supplier is pressurized | COMMENT |
| LOW | …ystems/fmgc/src/flightplanning/plans/BaseFlightPlan.ts | 2289 | // If the last leg in the first segment is a PI leg, we need to check if the waypoint is the same as the one i | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | …common/src/wasm/systems/systems/src/hydraulic/brake.rs | 361 | // TODO: implement a more physical based simulation | COMMENT |
| LOW | …stems/a320_systems/src/hydraulic/sfcc/flaps_channel.rs | 366 | // TODO: implement startup inhibition | COMMENT |
| LOW | …stems/a320_systems/src/hydraulic/sfcc/flaps_channel.rs | 377 | // TODO: implement startup inhibition | COMMENT |
| LOW | …stems/a320_systems/src/hydraulic/sfcc/flaps_channel.rs | 387 | // TODO: implement startup inhibition | COMMENT |
| LOW | …/systems/a380_systems/src/electrical/direct_current.rs | 357 | // TODO: implement refuel on bat switching | COMMENT |
| LOW | …/src/wasm/systems/a380_systems/src/fuel/cpiom_f/mod.rs | 637 | // TODO: implement AFDX communication (FMS data, pump states, valve states, etc.) | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | …ommon/src/wasm/cpp-msfs-framework/lib/fmt/format-inl.h | 1249 | // Step 1: integer promotion & Schubfach multiplier calculation. | COMMENT |
| LOW | …ommon/src/wasm/cpp-msfs-framework/lib/fmt/format-inl.h | 1304 | // Step 2: Try larger divisor; remove trailing zeros if necessary. | COMMENT |
| LOW | …ommon/src/wasm/cpp-msfs-framework/lib/fmt/format-inl.h | 1336 | // Step 3: Find the significand with the smaller divisor. | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | scripts/acquire_lock.sh | 23 | # Check if lock file does not already exist on the server | COMMENT |
| LOW | scripts/cf-cdn.sh | 19 | # Check if required environment variables are set | COMMENT |
| LOW | scripts/cf-cdn.sh | 73 | # Check if purge was successful | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | fbw-common/src/wasm/cpp-msfs-framework/test/test-cpp.sh | 5 | # Create a build directory | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | fbw-common/src/wasm/cpp-msfs-framework/lib/fmt/format.h | 3450 | // Compilers are not aware of how to leverage the maximum value of | COMMENT |