Skip to content
This repository was archived by the owner on Feb 22, 2018. It is now read-only.

Support enums #31

Merged
merged 1 commit into from
Mar 19, 2015
Merged

Support enums #31

merged 1 commit into from
Mar 19, 2015

Conversation

chalin
Copy link
Contributor

@chalin chalin commented Mar 18, 2015

Fixes #10.

@chalin
Copy link
Contributor Author

chalin commented Mar 18, 2015

FYI. Consider the following TS example:

enum Color {Red, Green, Blue};
var colorName: string = Color[2];

The expression Color[2] would need to be expressed as Colors.values[2].toString() in Dart. If this feature is to be used, then some code will need to be added to the TS/Dart facade (probably angular/modules/angular2/src/facade/lang.{es6,dart}. Note that Color["Red"] yielding 0 is supported in TS but not directly in Dart.

.to.throw('enum initializers are not supported');
});
it('should support switch over enum', () => {
expectTranslate('switch(c) { case Color.Red: break; default: break; }')
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just for my information, this is not different in any kind from a plain switch over anything else, is it?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Right. (This test just made me feel better that a case label could be written as, e.g., Color.Red. I didn't know for sure until I wrote the test.)

@mprobst mprobst self-assigned this Mar 18, 2015
mprobst added a commit that referenced this pull request Mar 19, 2015
@mprobst mprobst merged commit 2c35367 into dart-archive:master Mar 19, 2015
@chalin chalin deleted the chalin-0318-enum branch March 19, 2015 01:41
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Development

Successfully merging this pull request may close these issues.

Support enums
3 participants