proposal-first-class-protocols icon indicating copy to clipboard operation
proposal-first-class-protocols copied to clipboard

Initializing protocol fields

Open benash opened this issue 6 years ago • 1 comments

Hi, thanks for your work on this interesting proposal. Would be possible to initialize a protocol field by accessing this, or would that need to be a method? E.g.:

protocol Pageable {
  pageSize
  items

  getFirstPage() {
    return this[Pageable.items].slice(0, this[Pageable.pageSize])
  }
}

class GroceryList {
  constructor(items) {
    this.items = items
  }
  implements protocol Pageable {
    pageSize = 2
    items = this.items                // <-- Would this be legal?
    get items() { return this.items } // <-- Or this?
    items() { return this.items }     // <-- Or would this be the only way to go?
  }
}

benash avatar Dec 21 '18 01:12 benash

Having implemented protocols in my own library I'll offer my perspective.

Protocols are contracts (or rather behaviors) applied to types so any object of a type automatically observes the contract. They're not applied to existing objects. You can create reified instances of a protocol, but that's a separate concern. I know it's all a matter of implementation/choice, but I implemented protocols as solely functions/methods (command or query), not properties, following after what Clojure did.

I would think rather your types implement the properties (and their defaults) apart from the protocol and the protocol methods simply make use of those properties. The properties, if absolutely necessary, would rather become part of an interface (see TypeScript's). And, for what it's worth, although similar, protocols and interfaces are not the same thing.

mlanza avatar May 05 '23 18:05 mlanza