soiz1's picture
Upload 811 files
30c32c8 verified
raw
history blame
448 Bytes
/**
* Types of argument alignments
* @enum {string?}
*/
const ArgumentAlignment = {
/**
* Default alignment
*/
DEFAULT: null,
/**
* Left alignment (usually default)
*/
LEFT: 'LEFT',
/**
* Center alignment (used by the variable getter blocks)
*/
CENTER: 'CENTRE',
/**
* Right alignment (used by loop indicators)
*/
RIGHT: 'RIGHT',
};
module.exports = ArgumentAlignment;