Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
Scony committed Oct 31, 2024
1 parent d5ecae6 commit 16a4b38
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
1 change: 1 addition & 0 deletions REPRO
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
tox -e py3 -- -k 'test_parsing_success[/asdf/Gamedev/godot-related/godot-gdscript-toolkit/tests/parser/../formatter/input-output-pairs/bug_340_lambda_corner_case.in.gd]'
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
extends Node


# Called when the node enters the scene tree for the first time.
func _ready() -> void:

var reports: = []
var test_report: int = reports.filter(func (value: int) -> bool:
return value == 42
).back()
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
extends Node


# Called when the node enters the scene tree for the first time.
func _ready() -> void:
var reports := []
var test_report: int = reports.filter(func(value: int) -> bool: return value == 42).back()

0 comments on commit 16a4b38

Please sign in to comment.