constant.js 217 B

123456789
  1. var ContextCachedBy = {
  2. NONE: 0,
  3. STYLE_BIND: 1,
  4. PLAIN_TEXT: 2
  5. }; // Avoid confused with 0/false.
  6. var WILL_BE_RESTORED = 9;
  7. exports.ContextCachedBy = ContextCachedBy;
  8. exports.WILL_BE_RESTORED = WILL_BE_RESTORED;