summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/gdscript_tokenizer.cpp
Commit message (Expand)AuthorAgeFilesLines
* Implement exponential operator (**) to GDScript/ExpressionsYuri Roubinsky2022-05-111-0/+10
* improve OS.get_name classref, misc/scripts fixes, remove trailing quoteNathan Franke2022-04-221-1/+1
* Cleanup and move char functions to the `char_utils.h` header.bruvzg2022-02-041-33/+17
* Add support for the escaped UTF-16 and UTF-32 Unicode characters in the scrip...bruvzg2022-01-301-3/+63
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
* [GDScript] Check string literals for Unicode direction control characters.bruvzg2021-11-111-0/+9
* Improve GDScript indentation error messageMax Hilbrunner2021-10-281-1/+8
* Reorganise text editor settingsPaulb232021-08-161-1/+1
* Merge pull request #46714 from HaSa1002/fix-gdscript-underscore-strictRémi Verschelde2021-05-061-0/+4
|\
| * Fix GDScript Tokenizer being very strict about the number of underscoresJohannes2021-03-061-0/+4
* | GDScript: Add lambda syntax parsingGeorge Marques2021-04-281-0/+10
* | Fix missing quote in multiline GDScript stringAlex Hirsch2021-03-191-0/+3
* | Fixes small typos and grammar correctionAnshul7sp12021-03-121-1/+1
|/
* Update copyright statements to 2021Rémi Verschelde2021-01-011-2/+2
* Rename empty() to is_empty()Marcel Admiraal2020-12-281-3/+3
* Documentation generation for GDScriptThakee Nathees2020-11-291-2/+18
* Reorganized core/ directory, it was too fatty alreadyreduz2020-11-071-1/+1
* Fix typos with codespellRémi Verschelde2020-09-181-1/+1
* [Complex Test Layouts] Change `String` to use UTF-32 encoding on all platforms.bruvzg2020-09-031-23/+23
* Change GDScript compiler to use codegen abstractionGeorge Marques2020-09-011-1/+1
* GDScript: Check for missing exponent when parsing numbersGeorge Marques2020-09-011-0/+32
* GDScript: Allow keywords to be used in $ notationGeorge Marques2020-08-191-0/+46
* GDScript: Allow "match" to be used as an identifierGeorge Marques2020-08-171-0/+12
* Make all String float conversion methods be 64-bitAaron Franke2020-07-271-1/+1
* Wrap up GDScript 2.0 base implementationGeorge Marques2020-07-221-0/+3
* Reintroduce code completionGeorge Marques2020-07-201-6/+65
* Fix comments in beginning of fileGeorge Marques2020-07-201-2/+2
* New GDScript tokenizer and parserGeorge Marques2020-07-201-1326/+1082
* Rename String bin_to_int64 to bin_to_intAaron Franke2020-06-031-1/+1
* Remove 32-bit String hex_to_int methodAaron Franke2020-06-031-1/+1
* Remove 32-bit String to_int methodAaron Franke2020-06-031-1/+1
* Style: Enforce braces around if blocks and loopsRémi Verschelde2020-05-141-17/+34
* Style: Enforce separation line between function definitionsRémi Verschelde2020-05-141-0/+7
* Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocksRémi Verschelde2020-05-141-73/+0
* Style: clang-format: Disable AllowShortCaseLabelsOnASingleLineRémi Verschelde2020-05-101-10/+30
* Merge pull request #37033 from ThakeeNathees/python-like-str-escapeRémi Verschelde2020-05-091-11/+13
|\
| * python like string escape implementedThakee Nathees2020-03-151-11/+13
* | Replace NULL with nullptrlupoDharkael2020-04-021-5/+5
|/
* Variant: Added 64-bit packed arrays, renamed Variant::REAL to FLOAT.Juan Linietsky2020-02-251-3/+5
* Merge pull request #36461 from akien-mga/c++17-fallthrough-attributeRémi Verschelde2020-02-231-3/+3
|\
| * Replace FALLTHROUGH macro by C++17 [[fallthrough]]Rémi Verschelde2020-02-231-3/+3
* | Add support for Vector2i, Rect2i and Vector3i to VariantJuan Linietsky2020-02-221-0/+3
|/
* Added StringName as a variant type.Juan Linietsky2020-02-211-4/+5
* Reworked signal connection system, added support for Callable and Signal obje...Juan Linietsky2020-02-201-0/+2
* PoolVector is gone, replaced by VectorJuan Linietsky2020-02-181-7/+7
* Remove more deprecated methods and codeRémi Verschelde2020-02-131-1/+1
* Remove deprecated sync and slave networking keywordsRémi Verschelde2020-02-131-6/+1
* Update copyright statements to 2020Rémi Verschelde2020-01-011-2/+2
* Merge pull request #32966 from ffaristocrat/fix-hex-parsingRémi Verschelde2019-11-121-3/+4
|\
| * Fixes #32963 by correctly parsing bin/hex literalsMicheál Keane2019-11-121-3/+4