Skip to content

Fix issue #3238: ES6 warning msg that exported symbols must be declared var

Ian requested to merge (removed):master into master

Dependent extensions that use ScreencastIface are causing the following msg to appear in logs:

Some code accessed the property
'ScreencastIface' on the module 'screencast'. That property was defined with
'let' or 'const' inside the module. This was previously supported, but is not
correct according to the ES6 standard. Any symbols to be exported from a module
must be defined with 'var'. The property access will work as previously for the
time being, but please fix your code anyway.

Merge request reports