> However, spec doesn't specify what happens if developer caches reading and accesses it after stop is called. Why would it? I would expect JavaScript semantics: ```js let raw = 1; let reading = { get illuminance() { return raw; } }; let als = { reading }; let cached = als.reading; console.log(cached.illuminance); // 1 als.reading = null; console.log(cached.illuminance); // 1 ``` -- GitHub Notification of comment by rwaldron Please view or discuss this issue at https://github.com/w3c/ambient-light/issues/15#issuecomment-257395113 using your GitHub accountReceived on Monday, 31 October 2016 19:28:46 UTC
This archive was generated by hypermail 2.4.0 : Monday, 4 July 2022 12:47:52 UTC