<div dir="ltr"><div>What do you guys think about aliasing the type of the current object with the Self keyword? </div><div><br></div><div>E.g. instead of writing </div><div><br></div><div>class Test {</div><div>  static var value = 0</div><div>  </div><div>  func printValue() {</div><div>    print(Test.value)</div><div>  }</div><div>}</div><div><br></div><div><br></div><div>One could write </div><div><br></div><div>class Test {</div><div>  static var value = 0</div><div>  </div><div>  func printValue() {</div><div>    print(Self.value)</div><div>  }</div><div>}</div><div><br></div><div><br></div><div><br></div></div>