- #1199: simd-infrastructure well It is being rethout so the implementation will be written before stabilize, possibly with a new rfc.
- #1214: projections-lifetimes-and-wf
- #1331: grammar-is-canonical
- #1358: repr-align
- #1398: kinds-of-allocators
- #1432: replace-slice
- #1566: proc-macros
- #1576: macros-literal-matcher
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Component from '@ember/component'; | |
import { set } from '@ember/object'; | |
import { action, computed } from '@ember-decorators/object'; | |
import { layout, classNames } from '@ember-decorators/component'; | |
import hbs from 'htmlbars-inline-precompile'; | |
const WORDS_PER_SEC = 200 / 60; // Assumption: 200 words per minute | |
export class CountingTextareaManager { | |
constructor(str) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Ember from 'ember' | |
const setReadOnly = (context, name, value) => { | |
const writable = false | |
const configurable = false | |
const enumerable = true | |
Ember.defineProperty(context, name, { value, writable, configurable, enumerable }) | |
} | |
export default Ember.Controller.extend({ |