In GDScript, using .
at the beginning of a line allows you to call parent methods as well:
extends "res://some_script.gd"
func _ready():
# Calls `setup()` from `some_script.gd`.
.setup()
Note that the line above will be replaced by super.setup()
in Godot 4.0 to make this more explicit.