Quellcodebibliothek
Statistik
Leitseite
products
/
Sources
/
formale Sprachen
/
C
/
Firefox
/
layout
/
reftests
/
svg
/ (
Browser von der Mozilla Stiftung
Version 136.0.1
©
) Datei vom 10.2.2025 mit Größe 793 B
Bilddatei
ScopeChecker.h
products/Sources/formale Sprachen/C/Firefox/build/clang-plugin/ScopeChecker.h
/* 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/. */ #ifndef ScopeChecker_h__ #define ScopeChecker_h__ #include "plugin.h" class ScopeChecker : public BaseCheck { public: ScopeChecker(StringRef CheckName, ContextType *Context = nullptr) : BaseCheck(CheckName, Context) {} void registerMatchers(MatchFinder *AstMatcher) override; void check(const MatchFinder::MatchResult &Result) override; }; #endif
2026-05-28