aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexlib/LexerModule.h
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2021-01-29 20:51:34 +1100
committerNeil <nyamatongwe@gmail.com>2021-01-29 20:51:34 +1100
commit54341053b273c905afa7503d8dadcc4c46a0d2d3 (patch)
treee25fe4ee686d7d59068f46746006d62a8ca30692 /lexlib/LexerModule.h
parentba8b1a91525dd90f8fdcc75480f37815fecce2d2 (diff)
downloadscintilla-mirror-54341053b273c905afa7503d8dadcc4c46a0d2d3.tar.gz
Remove Lexilla files from Scintilla
Diffstat (limited to 'lexlib/LexerModule.h')
-rw-r--r--lexlib/LexerModule.h92
1 files changed, 0 insertions, 92 deletions
diff --git a/lexlib/LexerModule.h b/lexlib/LexerModule.h
deleted file mode 100644
index 83bdf237d..000000000
--- a/lexlib/LexerModule.h
+++ /dev/null
@@ -1,92 +0,0 @@
-// Scintilla source code edit control
-/** @file LexerModule.h
- ** Colourise for particular languages.
- **/
-// Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org>
-// The License.txt file describes the conditions under which this software may be distributed.
-
-#ifndef LEXERMODULE_H
-#define LEXERMODULE_H
-
-namespace Scintilla {
-
-class Accessor;
-class WordList;
-struct LexicalClass;
-
-typedef void (*LexerFunction)(Sci_PositionU startPos, Sci_Position lengthDoc, int initStyle,
- WordList *keywordlists[], Accessor &styler);
-typedef ILexer5 *(*LexerFactoryFunction)();
-
-/**
- * A LexerModule is responsible for lexing and folding a particular language.
- * The Catalogue class maintains a list of LexerModules which can be searched to find a
- * module appropriate to a particular language.
- * The ExternalLexerModule subclass holds lexers loaded from DLLs or shared libraries.
- */
-class LexerModule {
-protected:
- int language;
- LexerFunction fnLexer;
- LexerFunction fnFolder;
- LexerFactoryFunction fnFactory;
- const char * const * wordListDescriptions;
- const LexicalClass *lexClasses;
- size_t nClasses;
-
-public:
- const char *languageName;
- LexerModule(
- int language_,
- LexerFunction fnLexer_,
- const char *languageName_=nullptr,
- LexerFunction fnFolder_= nullptr,
- const char * const wordListDescriptions_[]=nullptr,
- const LexicalClass *lexClasses_=nullptr,
- size_t nClasses_=0) noexcept;
- LexerModule(
- int language_,
- LexerFactoryFunction fnFactory_,
- const char *languageName_,
- const char * const wordListDescriptions_[]=nullptr) noexcept;
- int GetLanguage() const noexcept;
-
- // -1 is returned if no WordList information is available
- int GetNumWordLists() const noexcept;
- const char *GetWordListDescription(int index) const noexcept;
- const LexicalClass *LexClasses() const noexcept;
- size_t NamedStyles() const noexcept;
-
- ILexer5 *Create() const;
-
- void Lex(Sci_PositionU startPos, Sci_Position lengthDoc, int initStyle,
- WordList *keywordlists[], Accessor &styler) const;
- void Fold(Sci_PositionU startPos, Sci_Position lengthDoc, int initStyle,
- WordList *keywordlists[], Accessor &styler) const;
-
- friend class CatalogueModules;
-};
-
-inline int Maximum(int a, int b) noexcept {
- return (a > b) ? a : b;
-}
-
-// Shut up annoying Visual C++ warnings:
-#ifdef _MSC_VER
-#pragma warning(disable: 4244 4456 4457)
-#endif
-
-// Turn off shadow warnings for lexers as may be maintained by others
-#if defined(__GNUC__)
-#pragma GCC diagnostic ignored "-Wshadow"
-#endif
-
-// Clang doesn't like omitting braces in array initialization but they just add
-// noise to LexicalClass arrays in lexers
-#if defined(__clang__)
-#pragma clang diagnostic ignored "-Wmissing-braces"
-#endif
-
-}
-
-#endif