summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/gdscript_parser.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* | break, continue outside of a loop, match statement handledThakee Nathees2020-05-151-0/+35
| |
* | Merge pull request #38738 from akien-mga/cause-we-never-go-out-of-styleRémi Verschelde2020-05-141-382/+177
|\ \ | | | | | | Style: Remove new line at block start, enforce line between functions, enforce braces in if and loop blocks
| * | Style: Enforce braces around if blocks and loopsRémi Verschelde2020-05-141-97/+176
| | | | | | | | | | | | | | | Using clang-tidy's `readability-braces-around-statements`. https://clang.llvm.org/extra/clang-tidy/checks/readability-braces-around-statements.html
| * | Style: Enforce separation line between function definitionsRémi Verschelde2020-05-141-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I couldn't find a tool that enforces it, so I went the manual route: ``` find -name "thirdparty" -prune \ -o -name "*.cpp" -o -name "*.h" -o -name "*.m" -o -name "*.mm" \ -o -name "*.glsl" > files perl -0777 -pi -e 's/\n}\n([^#])/\n}\n\n\1/g' $(cat files) misc/scripts/fix_style.sh -c ``` This adds a newline after all `}` on the first column, unless they are followed by `#` (typically `#endif`). This leads to having lots of places with two lines between function/class definitions, but clang-format then fixes it as we enforce max one line of separation. This doesn't fix potential occurrences of function definitions which are indented (e.g. for a helper class defined in a .cpp), but it's better than nothing. Also can't be made to run easily on CI/hooks so we'll have to be careful with new code. Part of #33027.
| * | Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocksRémi Verschelde2020-05-141-285/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Which means that reduz' beloved style which we all became used to will now be changed automatically to remove the first empty line. This makes us lean closer to 1TBS (the one true brace style) instead of hybridating it with some Allman-inspired spacing. There's still the case of braces around single-statement blocks that needs to be addressed (but clang-format can't help with that, but clang-tidy may if we agree about it). Part of #33027.
* | | Merge pull request #38610 from ThakeeNathees/infer-type-null-errorRémi Verschelde2020-05-141-0/+8
|\ \ \ | |/ / |/| | set parser error when infer type is null
| * | set parser error when infer type is nullThakee Nathees2020-05-131-0/+8
| | |
* | | Merge pull request #38611 from ThakeeNathees/shadow-var-warning-bug-fixRémi Verschelde2020-05-141-11/+5
|\ \ \ | | | | | | | | shadowed var warning in nested block bug fix
| * | | shadowed var warning in nested block bug fixThakee Nathees2020-05-101-11/+5
| |/ / | | | | | | | | | Fix: #38552
* | | Merge pull request #38609 from ↵Rémi Verschelde2020-05-131-0/+2
|\ \ \ | | | | | | | | | | | | | | | | ThakeeNathees/range-crash-with-non-numeric-const-fix range() with non-numeric const argument crash fix
| * | | range() with non-numeric const argument crash fixThakee Nathees2020-05-101-0/+2
| |/ /
* | | Merge pull request #38708 from ThakeeNathees/init-assign-type-parser-bug-fixRémi Verschelde2020-05-131-0/+1
|\ \ \ | | | | | | | | regression: var declaration type info parser bug fix
| * | | regression: var declaration type info parser bug fixThakee Nathees2020-05-131-0/+1
| | | |
* | | | regression: static func can't access const fixThakee Nathees2020-05-131-3/+6
|/ / /
* | | Style: clang-format: Disable AllowShortCaseLabelsOnASingleLineRémi Verschelde2020-05-101-72/+216
| | | | | | | | | | | | Part of #33027.
* | | Style: clang-format: Disable AllowShortIfStatementsOnASingleLineRémi Verschelde2020-05-101-27/+54
| | | | | | | | | | | | | | | | | | | | | Part of #33027, also discussed in #29848. Enforcing the use of brackets even on single line statements would be preferred, but `clang-format` doesn't have this functionality yet.
* | | Merge pull request #37020 from aaronfranke/rangeRémi Verschelde2020-05-101-8/+8
|\ \ \ | | | | | | | | Allow using integer vectors for iteration and make range() use them
| * | | Change get_completion_identifier_is_function to return a boolAaron Franke2020-05-091-1/+1
| | | | | | | | | | | | | | | | A minor bugfix
| * | | Allow using integer vectors for iteration and make range() use themAaron Franke2020-05-091-7/+7
| | | |
* | | | more clearer unexpected statement end error messagesThakee Nathees2020-05-101-12/+22
| |/ / |/| |
* | | Merge pull request #37598 from ThakeeNathees/GDScript-type-resolve-bug-fixRémi Verschelde2020-05-091-0/+4
|\ \ \ | | | | | | | | GDScript class var type resolve bug fixed
| * | | GDScript class var type resolve bug fixedThakee Nathees2020-04-051-0/+4
| | | | | | | | | | | | | | | | Fix: #37545
* | | | Merge pull request #38412 from ThakeeNathees/static-func-var-accessRémi Verschelde2020-05-091-0/+4
|\ \ \ \ | |_|/ / |/| | | parser error for static func access non-static variables
| * | | parser error for static func access non-static variablesThakee Nathees2020-05-031-0/+4
| | | | | | | | | | | | | | | | Fix: #38408
* | | | Merge pull request #37293 from Janglee123/ctrl-click-improvementsRémi Verschelde2020-05-051-1/+11
|\ \ \ \ | | | | | | | | | | Improved go-to definition (Ctrl + Click)
| * | | | Improved go-to definition (Ctrl + Click)janglee2020-05-051-1/+11
| | | | | | | | | | | | | | | | | | | | Co-Authored-By: Bojidar Marinov <bojidar.marinov.bg@gmail.com>
* | | | | Mention offending function name in "Indented block expected" errorSteven Schoen2020-05-021-1/+1
| |/ / / |/| | |
* | | | Fix for marking assert lines as safe bugTom Evans2020-04-271-9/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Calling _reduce_node_type from GDScriptParser::_parse_block for assert was using a current class with a scope that didn't include all functions. Now calling in GDScriptParser::_check_block_types uses the right class type. We also now check the assert node message. The assert line was added to the set_errors associated with assert, since before the error would be reported on the next line
* | | | Merge pull request #36927 from ThakeeNathees/export-var-type-reduce-implimentedRémi Verschelde2020-04-271-0/+35
|\ \ \ \ | | | | | | | | | | Fix: export var type reduce() implemented
| * | | | export var type reduce() implementedThakee Nathees2020-04-271-0/+35
| | | | |
* | | | | Merge pull request #37265 from BigRed-118/mark_assert_safeRémi Verschelde2020-04-241-0/+9
|\ \ \ \ \ | | | | | | | | | | | | Mark assert lines as safe in gdscript
| * | | | | Mark assert lines as safe in gdscriptTom Evans2020-03-251-0/+9
| | |/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | Now calling _reduce_node_type with debugging enabled to determine if assert line is safe. Part of doing this required the assert line to be stored away. Now the AssertNode line is being correctly set. Newlines are now marked safe always
* | | | | Merge pull request #37232 from ThakeeNathees/load()-autocomplete-imlpementedRémi Verschelde2020-04-241-0/+7
|\ \ \ \ \ | | | | | | | | | | | | autocomplete for load() function implemented
| * | | | | autocomplete for load() function implementedThakee Nathees2020-03-221-0/+7
| |/ / / /
* | | | | Merge pull request #37537 from ThakeeNathees/const-parsing-datatype-bug-fixRémi Verschelde2020-04-211-0/+13
|\ \ \ \ \ | | | | | | | | | | | | GDScript: Fix type inference for const reference to global class
| * | | | | GDScript: Fix type inference for const reference to global classThakee Nathees2020-04-031-0/+13
| | |_|/ / | |/| | | | | | | | | | | | | Fixes #37529.
* | | | | Merge pull request #37712 from stoofin/pattern-bind-warningRémi Verschelde2020-04-211-0/+1
|\ \ \ \ \ | | | | | | | | | | | | Fix unassigned variable warnings for match bindings
| * | | | | Pattern bind counts as assignmentStoofin2020-04-091-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | Fixes #34697
* | | | | | Merge pull request #38041 from ThakeeNathees/class-name-check-enhanceRémi Verschelde2020-04-211-0/+6
|\ \ \ \ \ \ | | | | | | | | | | | | | | GDScript class name existance check enhanced
| * | | | | | GDScript class name existance check enhancedThakee Nathees2020-04-201-0/+6
| | |_|_|/ / | |/| | | |
* | | | | | Merge pull request #37955 from ThakeeNathees/lin-unsafe-base-know-index-unkonwnRémi Verschelde2020-04-211-0/+1
|\ \ \ \ \ \ | | | | | | | | | | | | | | Line marked unsafe when base known and index unkonwn
| * | | | | | line unsafe for indexing with known base type & unkown identifierThakee Nathees2020-04-171-0/+1
| |/ / / / /
* / / / / / Fix handling of PROPERTY_USAGE_SUBGROUP in DocData and editorRémi Verschelde2020-04-201-1/+1
|/ / / / / | | | | | | | | | | | | | | | | | | | | Subgroups were added in #37678 but not properly handled everywhere where PROPERTY_USAGE_GROUP is.
* | | | | Merge pull request #37395 from ThakeeNathees/collon-equal-parser-bug-fixRémi Verschelde2020-04-101-3/+6
|\ \ \ \ \ | |_|/ / / |/| | | | `:=` fails on some nodes fix: #37357
| * | | | `:=` fails on some nodes fix: #37357Thakee Nathees2020-03-291-3/+6
| | |/ / | |/| |
* | | | Replace NULL with nullptrlupoDharkael2020-04-021-142/+142
| |/ / |/| |
* | | Fix for loop range bug: #37358Thakee Nathees2020-03-281-1/+0
|/ /
* | Style: Set clang-format Standard to Cpp11Rémi Verschelde2020-03-171-1/+1
| | | | | | | | | | | | | | | | | | | | For us, it practically only changes the fact that `A<A<int>>` is now used instead of the C++03 compatible `A<A<int> >`. Note: clang-format 10+ changed the `Standard` arguments to fully specified `c++11`, `c++14`, etc. versions, but we can't use `c++17` now if we want to preserve compatibility with clang-format 8 and 9. `Cpp11` is still supported as deprecated alias for `Latest`.
* | Fix various typosluz.paz2020-03-111-1/+1
| | | | | | Found via `codespell`
* | Merge pull request #36704 from ThakeeNathees/gdscript-duplicate-args-fixRémi Verschelde2020-03-101-0/+6
|\ \ | | | | | | GDScript duplicate arguments bug fixed