/// <summary> /// Creates a new method scope with custom flags. /// </summary> /// <param name="scopeFlags">The scope flags.</param> /// <returns>A new method scope.</returns> public Scope CreateScope(ScopeFlags scopeFlags) => Method.CreateScope(scopeFlags);
/// <summary> /// Creates a new method scope with default flags. /// </summary> /// <returns>A new method scope.</returns> public Scope CreateScope() => Method.CreateScope();