Misko Hevery
54af220107
refactor(ivy): create better styling parsing API ( #34418 )
...
Parsing styling is now simplified to be used like so:
```
for (let i = parseStyle(text); i <= 0; i = parseStyleNext(text, i)) {
const key = getLastParsedKey();
const value = getLastParsedValue();
...
}
```
This change makes it easier to invoke the parser from other locations in the system without paying the cost of creating and iterating over `Map` of styles.
PR Closes #34418
2020-01-24 12:22:26 -08:00
..
2020-01-24 12:22:10 -08:00
2020-01-24 12:22:25 -08:00
2020-01-24 12:22:25 -08:00
2020-01-24 12:22:10 -08:00
2020-01-24 12:22:26 -08:00
2020-01-24 12:22:25 -08:00
2019-11-25 18:41:22 -05:00
2019-12-18 09:12:57 -08:00
2019-05-20 16:37:47 -07:00
2020-01-14 09:45:24 -08:00
2020-01-24 12:22:25 -08:00
2019-10-22 12:00:20 -07:00
2020-01-24 12:22:10 -08:00
2019-11-25 18:41:22 -05:00
2019-11-25 18:41:22 -05:00
2019-09-11 20:31:14 -04:00
2020-01-24 12:22:10 -08:00
2019-10-25 13:11:34 -07:00
2019-09-17 15:46:07 -07:00
2019-11-25 18:41:22 -05:00
2019-10-11 15:45:22 -07:00
2019-11-26 16:35:55 -05:00
2020-01-24 12:22:10 -08:00
2019-04-17 12:20:51 -07:00
2019-10-14 23:08:10 +00:00
2019-08-19 10:12:38 -07:00
2019-11-25 11:40:36 -05:00
2020-01-24 12:22:25 -08:00
2019-07-23 15:45:32 -07:00
2019-11-04 21:39:23 +00:00
2020-01-10 08:27:26 -08:00
2020-01-10 08:27:26 -08:00
2019-11-25 18:41:22 -05:00
2020-01-24 12:22:25 -08:00
2019-05-20 16:37:47 -07:00
2019-10-14 16:20:11 +00:00
2018-10-24 20:27:12 -04:00
2018-01-17 17:01:09 -08:00
2020-01-24 12:22:10 -08:00
2019-07-23 15:46:23 -07:00
2020-01-16 12:10:01 -05:00
2019-11-15 10:41:02 -08:00