mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-26 16:02:54 -05:00
18 lines
430 B
JavaScript
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;
|