tristanlabelle / swift-winrt

A Swift Projection for WinRT APIs
MIT License
20 stars 2 forks source link

Change property naming scheme #376

Closed tristanlabelle closed 4 weeks ago

tristanlabelle commented 4 weeks ago
// Before
func _prop() throws -> T
func _prop(_: T) throws
var prop: T! { get set }

// After
var prop: T { get throws }
func prop(_: T) throws
var prop_: T! { get set }

Fixes #372