summaryrefslogtreecommitdiff
path: root/modules/gdscript/gdscript_tokenizer.cpp
AgeCommit message (Expand)Author
2020-11-29Documentation generation for GDScriptThakee Nathees
2020-11-07Reorganized core/ directory, it was too fatty alreadyreduz
2020-09-18Fix typos with codespellRémi Verschelde
2020-09-03[Complex Test Layouts] Change `String` to use UTF-32 encoding on all platforms.bruvzg
2020-09-01Change GDScript compiler to use codegen abstractionGeorge Marques
2020-09-01GDScript: Check for missing exponent when parsing numbersGeorge Marques
2020-08-19GDScript: Allow keywords to be used in $ notationGeorge Marques
2020-08-17GDScript: Allow "match" to be used as an identifierGeorge Marques
2020-07-27Make all String float conversion methods be 64-bitAaron Franke
2020-07-22Wrap up GDScript 2.0 base implementationGeorge Marques
2020-07-20Reintroduce code completionGeorge Marques
2020-07-20Fix comments in beginning of fileGeorge Marques
2020-07-20New GDScript tokenizer and parserGeorge Marques
2020-06-03Rename String bin_to_int64 to bin_to_intAaron Franke
2020-06-03Remove 32-bit String hex_to_int methodAaron Franke
2020-06-03Remove 32-bit String to_int methodAaron Franke
2020-05-14Style: Enforce braces around if blocks and loopsRémi Verschelde
2020-05-14Style: Enforce separation line between function definitionsRémi Verschelde
2020-05-14Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocksRémi Verschelde
2020-05-10Style: clang-format: Disable AllowShortCaseLabelsOnASingleLineRémi Verschelde
2020-05-09Merge pull request #37033 from ThakeeNathees/python-like-str-escapeRémi Verschelde
2020-04-02Replace NULL with nullptrlupoDharkael
2020-03-15python like string escape implementedThakee Nathees
2020-02-25Variant: Added 64-bit packed arrays, renamed Variant::REAL to FLOAT.Juan Linietsky
2020-02-23Merge pull request #36461 from akien-mga/c++17-fallthrough-attributeRémi Verschelde
2020-02-23Replace FALLTHROUGH macro by C++17 [[fallthrough]]Rémi Verschelde
2020-02-22Add support for Vector2i, Rect2i and Vector3i to VariantJuan Linietsky
2020-02-21Added StringName as a variant type.Juan Linietsky
2020-02-20Reworked signal connection system, added support for Callable and Signal obje...Juan Linietsky
2020-02-18PoolVector is gone, replaced by VectorJuan Linietsky
2020-02-13Remove more deprecated methods and codeRémi Verschelde
2020-02-13Remove deprecated sync and slave networking keywordsRémi Verschelde
2020-01-01Update copyright statements to 2020Rémi Verschelde
2019-11-12Merge pull request #32966 from ffaristocrat/fix-hex-parsingRémi Verschelde
2019-11-12Fixes #32963 by correctly parsing bin/hex literalsMicheál Keane
2019-10-25Merge pull request #32808 from bojidar-bg/30937-less-strict-mixed-spacingRémi Verschelde
2019-10-25Allow mixed tabs and spaces when indentation does not depend on tab sizeBojidar Marinov
2019-10-18Remove duplicate valid value check in gdscript_tokenizer.cpp.Marcel Admiraal
2019-09-25Added some obvious errors explanationsqarmin
2019-08-09Replace 'ERR_EXPLAIN' with 'ERR_FAIL_*_MSG' in "platform", "modules/gdnative"...Robin Hübner
2019-07-26Disallow using of both tabs and spaces for indentation in the same fileBojidar Marinov
2019-06-26Some code changed with Clang-Tidyqarmin
2019-04-25Support for binary literals in GDScript. Added an error that shows if a point...jude-lafitteIII
2019-04-22Merge pull request #27673 from qarmin/small_fixesRémi Verschelde
2019-04-10Merge pull request #27170 from timoschwarzer/allow-whitespaces-in-warning-ign...Rémi Verschelde
2019-04-09Style: Apply new changes from clang-format 8.0Rémi Verschelde
2019-04-08Small fixes, mostly dupicated codeqarmin
2019-04-05Fix -Wimplicit-fallthrough warnings from GCC 8Rémi Verschelde
2019-04-01Add object encoding param to serialization methodsFabio Alessandrelli
2019-03-17Allow whitespaces in warning-ignore commentsTimo Schwarzer