asat method

Execute asat(
  1. Entity entity
)

Asat combines as and at to just one entity.

Execute.asat(
	Entity.player(),
	children: List<Widget> [
		Command('/say I get executed')
	]
),

⇒ execute as @p at @s run say I get executed

Implementation

Execute asat(Entity entity) => _addArgumentRet('as $entity at @s');