scratch-vm/src/extension-support/reporter-scope.js
2018-03-20 15:30:34 -07:00

18 lines
430 B
JavaScript

/**
* Indicate the scope for a reporter's value.
* @enum {string}
*/
const ReporterScope = {
/**
* This reporter's value is global and does not depend on context.
*/
GLOBAL: 'global',
/**
* This reporter's value is specific to a particular target/sprite.
* Another target may have a different value or may not even have a value.
*/
TARGET: 'target'
};
module.exports = ReporterScope;