refactor(core): rename instructions for consistency (#20855)

PR Close #20855
This commit is contained in:
Kara Erickson
2017-12-14 16:26:28 -08:00
committed by Igor Minar
parent 6cc8f2298e
commit 19eeba2281
16 changed files with 230 additions and 227 deletions

View File

@ -6,7 +6,7 @@
* found in the LICENSE file at https://angular.io/license
*/
import {C, E, T, V, c, defineComponent, e, rC, rc, v} from '../../src/render3/index';
import {C, E, T, V, c, defineComponent, e, cR, cr, v} from '../../src/render3/index';
import {document, renderComponent} from './render_util';
@ -39,7 +39,7 @@ describe('iv perf test', () => {
C(0);
c();
}
rC(0);
cR(0);
{
for (let i = 0; i < count; i++) {
let cm0 = V(0);
@ -53,7 +53,7 @@ describe('iv perf test', () => {
v();
}
}
rc();
cr();
},
factory: () => new Component
});