0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-12-01 17:30:59 +01:00
svelte/test/validator
Nico Rehwaldt 65cdead991 Verify computed property dependencies
Improves the validator to fail if someone forgets to declare
dependent properties for computed state:

```
export default {
  computed: {
    bar: () => { return new Date().getTime(); }
  }
};
```
2016-12-04 21:22:48 +01:00
..
computed-values Verify computed property dependencies 2016-12-04 21:22:48 +01:00
named-export basic validation 2016-11-26 10:52:25 -05:00
properties-components-should-be-capitalised more validation 2016-11-26 11:34:16 -05:00
properties-computed-must-be-an-object basic validation 2016-11-26 10:52:25 -05:00
properties-computed-must-be-functions basic validation 2016-11-26 10:52:25 -05:00
properties-computed-no-destructuring basic validation 2016-11-26 10:52:25 -05:00
properties-data-must-be-function more validation 2016-11-26 11:34:16 -05:00
properties-duplicated basic validation 2016-11-26 10:52:25 -05:00
properties-unexpected basic validation 2016-11-26 10:52:25 -05:00
properties-unexpected-b basic validation 2016-11-26 10:52:25 -05:00