Skip to content

Commit

Permalink
Refactor a bunch of component internals for TS
Browse files Browse the repository at this point in the history
  • Loading branch information
wagenet committed Feb 18, 2022
1 parent 1c3fc0b commit 8388b3d
Show file tree
Hide file tree
Showing 21 changed files with 545 additions and 468 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ import {
valueForTag,
} from '@glimmer/validator';
import { SimpleElement } from '@simple-dom/interface';
import Component from '../component';
import { DynamicScope } from '../renderer';
import RuntimeResolver from '../resolver';
import { isTemplateFactory } from '../template';
Expand All @@ -49,7 +50,7 @@ import {
parseAttributeBinding,
} from '../utils/bindings';

import ComponentStateBucket, { Component } from '../utils/curly-component-state-bucket';
import ComponentStateBucket from '../utils/curly-component-state-bucket';
import { processComponentArgs } from '../utils/process-args';

export const ARGS = enumerableSymbol('ARGS');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@ import {
} from '@glimmer/interfaces';
import { capabilityFlagsFrom } from '@glimmer/manager';
import { CONSTANT_TAG, consumeTag } from '@glimmer/validator';
import Component from '../component';
import { DynamicScope } from '../renderer';
import ComponentStateBucket, { Component } from '../utils/curly-component-state-bucket';
import ComponentStateBucket from '../utils/curly-component-state-bucket';
import CurlyComponentManager, {
DIRTY_TAG,
initialRenderInstrumentDetails,
Expand Down
Loading

0 comments on commit 8388b3d

Please sign in to comment.