Coroutine
Description
An opaque class representing a paused coroutine.
A Coroutine does not have any member methods or properties. It is only used to allow you to check whether a Variant reference to a node is a coroutine.
		Variant val = myNode.coevaluate();
		if (val.is(Coroutine)) {
			await val;
		}