angular2
Version:
Angular 2 - a web framework for modern web apps
1 lines • 1.45 kB
Source Map (JSON)
{"version":3,"sources":["constants.js"],"names":[],"mappings":"AAMA,KAAO,CAAM,KAAA,CAAA,UAAS,EAAE,aAAW,CAAC;AAAA,AAMpC,KAAO,CAAM,KAAA,CAAA,OAAM,EAAE,UAAQ,CAAC;AAAA,AAM9B,KAAO,CAAM,KAAA,CAAA,YAAW,EAAE,eAAa,CAAC;AAAA,AAMxC,KAAO,CAAM,KAAA,CAAA,QAAO,EAAE,WAAS,CAAC;AAAA,AAKhC,KAAO,CAAM,KAAA,CAAA,OAAM,EAAI,UAAQ,CAAC;AAAA,AAKhC,KAAO,CAAM,KAAA,CAAA,OAAM,EAAI,UAAQ,CAAC;AAAA","file":"angular2/src/change_detection/constants.es6","sourcesContent":["//TODO:vsavkin Use enums after switching to TypeScript\n\n/**\n * CHECK_ONCE means that after calling detectChanges the mode of the change detector\n * will become CHECKED.\n */\nexport const CHECK_ONCE=\"CHECK_ONCE\";\n\n/**\n * CHECKED means that the change detector should be skipped until its mode changes to\n * CHECK_ONCE or CHECK_ALWAYS.\n */\nexport const CHECKED=\"CHECKED\";\n\n/**\n * CHECK_ALWAYS means that after calling detectChanges the mode of the change detector\n * will remain CHECK_ALWAYS.\n */\nexport const CHECK_ALWAYS=\"ALWAYS_CHECK\";\n\n/**\n * DETACHED means that the change detector sub tree is not a part of the main tree and\n * should be skipped.\n */\nexport const DETACHED=\"DETACHED\";\n\n/**\n * ON_PUSH means that the change detector's mode will be set to CHECK_ONCE during hydration.\n */\nexport const ON_PUSH = \"ON_PUSH\";\n\n/**\n * DEFAULT means that the change detector's mode will be set to CHECK_ALWAYS during hydration.\n */\nexport const DEFAULT = \"DEFAULT\";"]}