initial commit, 4.5 stable
Some checks failed
🔗 GHA / 📊 Static checks (push) Has been cancelled
🔗 GHA / 🤖 Android (push) Has been cancelled
🔗 GHA / 🍏 iOS (push) Has been cancelled
🔗 GHA / 🐧 Linux (push) Has been cancelled
🔗 GHA / 🍎 macOS (push) Has been cancelled
🔗 GHA / 🏁 Windows (push) Has been cancelled
🔗 GHA / 🌐 Web (push) Has been cancelled
Some checks failed
🔗 GHA / 📊 Static checks (push) Has been cancelled
🔗 GHA / 🤖 Android (push) Has been cancelled
🔗 GHA / 🍏 iOS (push) Has been cancelled
🔗 GHA / 🐧 Linux (push) Has been cancelled
🔗 GHA / 🍎 macOS (push) Has been cancelled
🔗 GHA / 🏁 Windows (push) Has been cancelled
🔗 GHA / 🌐 Web (push) Has been cancelled
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
func test():
|
||||
# The following statements should all be reported as standalone expressions:
|
||||
1234
|
||||
0.0 + 0.0
|
||||
Color(1, 1, 1)
|
||||
Vector3.ZERO
|
||||
[true, false]
|
||||
float(125)
|
||||
# The following statements should not produce `STANDALONE_EXPRESSION`:
|
||||
var _a = 1
|
||||
_a = 2 # Assignment is a local (or global) side effect.
|
||||
@warning_ignore("redundant_await")
|
||||
await 3 # The `await` operand is usually a coroutine or a signal.
|
||||
absi(4) # A call (in general) can have side effects.
|
||||
@warning_ignore("return_value_discarded")
|
||||
preload("../../utils.notest.gd") # A static initializer may have side effects.
|
||||
"""
|
||||
Python-like "comment".
|
||||
"""
|
||||
@warning_ignore("standalone_ternary")
|
||||
1 if 2 else 3 # Produces `STANDALONE_TERNARY` instead.
|
Reference in New Issue
Block a user