fix(setup): use upstream traceur with explicit patches

Also correct the transpile to ES6

Also support generics correctly

All patches are hooked in via `/tools/transpiler/index.js`
https://github.com/google/traceur-compiler/issues/1700
https://github.com/google/traceur-compiler/issues/1699
https://github.com/google/traceur-compiler/issues/1708
https://github.com/google/traceur-compiler/issues/1625
https://github.com/google/traceur-compiler/issues/1706
This commit is contained in:
Tobias Bosch 2015-02-06 13:38:52 -08:00
parent 63d8107d1c
commit f39c6dc2c7
46 changed files with 515 additions and 125 deletions

View File

@ -14,7 +14,6 @@ module.exports = function(config) {
{pattern: 'tools/transpiler/spec/**', included: false}, {pattern: 'tools/transpiler/spec/**', included: false},
'node_modules/traceur/bin/traceur-runtime.js', 'node_modules/traceur/bin/traceur-runtime.js',
'traceur-runtime-patch.js',
'node_modules/es6-module-loader/dist/es6-module-loader-sans-promises.src.js', 'node_modules/es6-module-loader/dist/es6-module-loader-sans-promises.src.js',
// Including systemjs because it defines `__eval`, which produces correct stack traces. // Including systemjs because it defines `__eval`, which produces correct stack traces.
'node_modules/systemjs/dist/system.src.js', 'node_modules/systemjs/dist/system.src.js',

View File

@ -8,6 +8,7 @@ export class AbstractChangeDetector extends ChangeDetector {
mode:string; mode:string;
constructor() { constructor() {
super();
this.children = []; this.children = [];
this.mode = CHECK_ALWAYS; this.mode = CHECK_ALWAYS;
} }

View File

@ -19,15 +19,15 @@ export class ArrayChanges {
_length:int; _length:int;
_linkedRecords:_DuplicateMap; _linkedRecords:_DuplicateMap;
_unlinkedRecords:_DuplicateMap; _unlinkedRecords:_DuplicateMap;
_previousItHead:CollectionChangeRecord<V>; _previousItHead:CollectionChangeRecord;
_itHead:CollectionChangeRecord<V>; _itHead:CollectionChangeRecord;
_itTail:CollectionChangeRecord<V>; _itTail:CollectionChangeRecord;
_additionsHead:CollectionChangeRecord<V>; _additionsHead:CollectionChangeRecord;
_additionsTail:CollectionChangeRecord<V>; _additionsTail:CollectionChangeRecord;
_movesHead:CollectionChangeRecord<V>; _movesHead:CollectionChangeRecord;
_movesTail:CollectionChangeRecord<V> ; _movesTail:CollectionChangeRecord;
_removalsHead:CollectionChangeRecord<V>; _removalsHead:CollectionChangeRecord;
_removalsTail:CollectionChangeRecord<V>; _removalsTail:CollectionChangeRecord;
constructor() { constructor() {
this._collection = null; this._collection = null;

View File

@ -4,6 +4,7 @@ export class ExpressionChangedAfterItHasBeenChecked extends Error {
message:string; message:string;
constructor(proto:ProtoRecord, change:any) { constructor(proto:ProtoRecord, change:any) {
super();
this.message = `Expression '${proto.expressionAsString}' has changed after it was checked. ` + this.message = `Expression '${proto.expressionAsString}' has changed after it was checked. ` +
`Previous value: '${change.previousValue}'. Current value: '${change.currentValue}'`; `Previous value: '${change.previousValue}'. Current value: '${change.currentValue}'`;
} }
@ -19,6 +20,7 @@ export class ChangeDetectionError extends Error {
location:string; location:string;
constructor(proto:ProtoRecord, originalException:any) { constructor(proto:ProtoRecord, originalException:any) {
super();
this.originalException = originalException; this.originalException = originalException;
this.location = proto.expressionAsString; this.location = proto.expressionAsString;
this.message = `${this.originalException} in [${this.location}]`; this.message = `${this.originalException} in [${this.location}]`;

View File

@ -36,6 +36,7 @@ export class EmptyExpr extends AST {
export class Structural extends AST { export class Structural extends AST {
value:AST; value:AST;
constructor(value:AST) { constructor(value:AST) {
super();
this.value = value; this.value = value;
} }
@ -64,6 +65,7 @@ export class ImplicitReceiver extends AST {
export class Chain extends AST { export class Chain extends AST {
expressions:List; expressions:List;
constructor(expressions:List) { constructor(expressions:List) {
super();
this.expressions = expressions; this.expressions = expressions;
} }
@ -86,6 +88,7 @@ export class Conditional extends AST {
trueExp:AST; trueExp:AST;
falseExp:AST; falseExp:AST;
constructor(condition:AST, trueExp:AST, falseExp:AST){ constructor(condition:AST, trueExp:AST, falseExp:AST){
super();
this.condition = condition; this.condition = condition;
this.trueExp = trueExp; this.trueExp = trueExp;
this.falseExp = falseExp; this.falseExp = falseExp;
@ -110,6 +113,7 @@ export class AccessMember extends AST {
getter:Function; getter:Function;
setter:Function; setter:Function;
constructor(receiver:AST, name:string, getter:Function, setter:Function) { constructor(receiver:AST, name:string, getter:Function, setter:Function) {
super();
this.receiver = receiver; this.receiver = receiver;
this.name = name; this.name = name;
this.getter = getter; this.getter = getter;
@ -155,6 +159,7 @@ export class KeyedAccess extends AST {
obj:AST; obj:AST;
key:AST; key:AST;
constructor(obj:AST, key:AST) { constructor(obj:AST, key:AST) {
super();
this.obj = obj; this.obj = obj;
this.key = key; this.key = key;
} }
@ -187,6 +192,7 @@ export class Formatter extends AST {
args:List<AST>; args:List<AST>;
allArgs:List<AST>; allArgs:List<AST>;
constructor(exp:AST, name:string, args:List) { constructor(exp:AST, name:string, args:List) {
super();
this.exp = exp; this.exp = exp;
this.name = name; this.name = name;
this.args = args; this.args = args;
@ -201,6 +207,7 @@ export class Formatter extends AST {
export class LiteralPrimitive extends AST { export class LiteralPrimitive extends AST {
value; value;
constructor(value) { constructor(value) {
super();
this.value = value; this.value = value;
} }
@ -216,6 +223,7 @@ export class LiteralPrimitive extends AST {
export class LiteralArray extends AST { export class LiteralArray extends AST {
expressions:List; expressions:List;
constructor(expressions:List) { constructor(expressions:List) {
super();
this.expressions = expressions; this.expressions = expressions;
} }
@ -232,6 +240,7 @@ export class LiteralMap extends AST {
keys:List; keys:List;
values:List; values:List;
constructor(keys:List, values:List) { constructor(keys:List, values:List) {
super();
this.keys = keys; this.keys = keys;
this.values = values; this.values = values;
} }
@ -253,6 +262,7 @@ export class Interpolation extends AST {
strings:List; strings:List;
expressions:List; expressions:List;
constructor(strings:List, expressions:List) { constructor(strings:List, expressions:List) {
super();
this.strings = strings; this.strings = strings;
this.expressions = expressions; this.expressions = expressions;
} }
@ -271,6 +281,7 @@ export class Binary extends AST {
left:AST; left:AST;
right:AST; right:AST;
constructor(operation:string, left:AST, right:AST) { constructor(operation:string, left:AST, right:AST) {
super();
this.operation = operation; this.operation = operation;
this.left = left; this.left = left;
this.right = right; this.right = right;
@ -310,6 +321,7 @@ export class Binary extends AST {
export class PrefixNot extends AST { export class PrefixNot extends AST {
expression:AST; expression:AST;
constructor(expression:AST) { constructor(expression:AST) {
super();
this.expression = expression; this.expression = expression;
} }
@ -326,6 +338,7 @@ export class Assignment extends AST {
target:AST; target:AST;
value:AST; value:AST;
constructor(target:AST, value:AST) { constructor(target:AST, value:AST) {
super();
this.target = target; this.target = target;
this.value = value; this.value = value;
} }
@ -345,6 +358,7 @@ export class MethodCall extends AST {
args:List; args:List;
name:string; name:string;
constructor(receiver:AST, name:string, fn:Function, args:List) { constructor(receiver:AST, name:string, fn:Function, args:List) {
super();
this.receiver = receiver; this.receiver = receiver;
this.fn = fn; this.fn = fn;
this.args = args; this.args = args;
@ -375,6 +389,7 @@ export class FunctionCall extends AST {
target:AST; target:AST;
args:List; args:List;
constructor(target:AST, args:List) { constructor(target:AST, args:List) {
super();
this.target = target; this.target = target;
this.args = args; this.args = args;
} }
@ -397,6 +412,7 @@ export class ASTWithSource extends AST {
source:string; source:string;
location:string; location:string;
constructor(ast:AST, source:string, location:string) { constructor(ast:AST, source:string, location:string) {
super();
this.source = source; this.source = source;
this.location = location; this.location = location;
this.ast = ast; this.ast = ast;
@ -429,6 +445,7 @@ export class TemplateBinding {
name:string; name:string;
expression:ASTWithSource; expression:ASTWithSource;
constructor(key:string, keyIsVar:boolean, name:string, expression:ASTWithSource) { constructor(key:string, keyIsVar:boolean, name:string, expression:ASTWithSource) {
super();
this.key = key; this.key = key;
this.keyIsVar = keyIsVar; this.keyIsVar = keyIsVar;
// only either name or expression will be filled. // only either name or expression will be filled.

View File

@ -184,6 +184,7 @@ const $NBSP = 160;
export class ScannerError extends Error { export class ScannerError extends Error {
message:string; message:string;
constructor(message) { constructor(message) {
super();
this.message = message; this.message = message;
} }

View File

@ -104,6 +104,7 @@ export class DynamicProtoChangeDetector extends ProtoChangeDetector {
_recordBuilder:ProtoRecordBuilder; _recordBuilder:ProtoRecordBuilder;
constructor() { constructor() {
super();
this._records = null; this._records = null;
this._recordBuilder = new ProtoRecordBuilder(); this._recordBuilder = new ProtoRecordBuilder();
} }
@ -131,6 +132,7 @@ export class JitProtoChangeDetector extends ProtoChangeDetector {
_recordBuilder:ProtoRecordBuilder; _recordBuilder:ProtoRecordBuilder;
constructor() { constructor() {
super();
this._factory = null; this._factory = null;
this._recordBuilder = new ProtoRecordBuilder(); this._recordBuilder = new ProtoRecordBuilder();
} }

View File

@ -9,6 +9,7 @@ export class EventEmitter extends DependencyAnnotation {
eventName: string; eventName: string;
@CONST() @CONST()
constructor(eventName) { constructor(eventName) {
super();
this.eventName = eventName; this.eventName = eventName;
} }
} }

View File

@ -8,6 +8,7 @@ import {DependencyAnnotation} from 'angular2/di';
export class Parent extends DependencyAnnotation { export class Parent extends DependencyAnnotation {
@CONST() @CONST()
constructor() { constructor() {
super();
} }
} }
@ -18,5 +19,6 @@ export class Parent extends DependencyAnnotation {
export class Ancestor extends DependencyAnnotation { export class Ancestor extends DependencyAnnotation {
@CONST() @CONST()
constructor() { constructor() {
super();
} }
} }

View File

@ -15,6 +15,7 @@ import {DirectiveMetadata} from './directive_metadata';
import {Component} from '../annotations/annotations'; import {Component} from '../annotations/annotations';
import {Content} from './shadow_dom_emulation/content_tag'; import {Content} from './shadow_dom_emulation/content_tag';
import {ShadowDomStrategy} from './shadow_dom_strategy'; import {ShadowDomStrategy} from './shadow_dom_strategy';
import {CompileStep} from './pipeline/compile_step';
/** /**
* Cache that stores the ProtoView of the template of a component. * Cache that stores the ProtoView of the template of a component.

View File

@ -640,6 +640,7 @@ export class ElementInjector extends TreeNode {
class OutOfBoundsAccess extends Error { class OutOfBoundsAccess extends Error {
message:string; message:string;
constructor(index) { constructor(index) {
super();
this.message = `Index ${index} is out-of-bounds.`; this.message = `Index ${index} is out-of-bounds.`;
} }

View File

@ -30,6 +30,7 @@ import {ShadowDomStrategy} from '../shadow_dom_strategy';
export class DirectiveParser extends CompileStep { export class DirectiveParser extends CompileStep {
_selectorMatcher:SelectorMatcher; _selectorMatcher:SelectorMatcher;
constructor(directives:List<DirectiveMetadata>) { constructor(directives:List<DirectiveMetadata>) {
super();
this._selectorMatcher = new SelectorMatcher(); this._selectorMatcher = new SelectorMatcher();
for (var i=0; i<directives.length; i++) { for (var i=0; i<directives.length; i++) {
var directiveMetadata = directives[i]; var directiveMetadata = directives[i];

View File

@ -89,6 +89,7 @@ export class ElementBinderBuilder extends CompileStep {
_parser:Parser; _parser:Parser;
_compilationUnit:any; _compilationUnit:any;
constructor(parser:Parser, compilationUnit:any) { constructor(parser:Parser, compilationUnit:any) {
super();
this._parser = parser; this._parser = parser;
this._compilationUnit = compilationUnit; this._compilationUnit = compilationUnit;
} }

View File

@ -32,6 +32,7 @@ export class PropertyBindingParser extends CompileStep {
_parser:Parser; _parser:Parser;
_compilationUnit:any; _compilationUnit:any;
constructor(parser:Parser, compilationUnit:any) { constructor(parser:Parser, compilationUnit:any) {
super();
this._parser = parser; this._parser = parser;
this._compilationUnit = compilationUnit; this._compilationUnit = compilationUnit;
} }

View File

@ -25,6 +25,7 @@ export class ProtoViewBuilder extends CompileStep {
changeDetection:ChangeDetection; changeDetection:ChangeDetection;
_shadowDomStrategy:ShadowDomStrategy; _shadowDomStrategy:ShadowDomStrategy;
constructor(changeDetection:ChangeDetection, shadowDomStrategy:ShadowDomStrategy) { constructor(changeDetection:ChangeDetection, shadowDomStrategy:ShadowDomStrategy) {
super();
this._shadowDomStrategy = shadowDomStrategy; this._shadowDomStrategy = shadowDomStrategy;
this.changeDetection = changeDetection; this.changeDetection = changeDetection;
} }

View File

@ -17,6 +17,7 @@ export class TextInterpolationParser extends CompileStep {
_parser:Parser; _parser:Parser;
_compilationUnit:any; _compilationUnit:any;
constructor(parser:Parser, compilationUnit:any) { constructor(parser:Parser, compilationUnit:any) {
super();
this._parser = parser; this._parser = parser;
this._compilationUnit = compilationUnit; this._compilationUnit = compilationUnit;
} }

View File

@ -36,6 +36,7 @@ export class ViewSplitter extends CompileStep {
_parser:Parser; _parser:Parser;
_compilationUnit:any; _compilationUnit:any;
constructor(parser:Parser, compilationUnit:any) { constructor(parser:Parser, compilationUnit:any) {
super();
this._parser = parser; this._parser = parser;
this._compilationUnit = compilationUnit; this._compilationUnit = compilationUnit;
} }

View File

@ -10,7 +10,7 @@ var _scriptTemplate = DOM.createScriptTag('type', 'ng/content')
class ContentStrategy { class ContentStrategy {
nodes: List<Node>; nodes: List<Node>;
insert(nodes:List<Nodes>){} insert(nodes:List<Node>){}
} }
/** /**
@ -23,6 +23,7 @@ class RenderedContent extends ContentStrategy {
endScript:Element; endScript:Element;
constructor(contentEl:Element) { constructor(contentEl:Element) {
super();
this._replaceContentElementWithScriptTags(contentEl); this._replaceContentElementWithScriptTags(contentEl);
this.nodes = []; this.nodes = [];
} }
@ -64,6 +65,7 @@ class IntermediateContent extends ContentStrategy {
destinationLightDom:LightDom; destinationLightDom:LightDom;
constructor(destinationLightDom:LightDom) { constructor(destinationLightDom:LightDom) {
super();
this.destinationLightDom = destinationLightDom; this.destinationLightDom = destinationLightDom;
this.nodes = []; this.nodes = [];
} }

View File

@ -18,6 +18,7 @@ export class EmulatedShadowDomStrategy extends ShadowDomStrategy {
_styleHost: Element; _styleHost: Element;
constructor(styleHost: Element = null) { constructor(styleHost: Element = null) {
super();
if (isBlank(styleHost)) { if (isBlank(styleHost)) {
styleHost = DOM.defaultDoc().head; styleHost = DOM.defaultDoc().head;
} }

View File

@ -1,6 +1,6 @@
import {Promise, PromiseWrapper} from 'angular2/src/facade/async'; import {Promise, PromiseWrapper} from 'angular2/src/facade/async';
import {isBlank, isPresent, BaseException, stringify} from 'angular2/src/facade/lang'; import {isBlank, isPresent, BaseException, stringify} from 'angular2/src/facade/lang';
import {TemplateElement, DOM} from 'angular2/src/facade/dom'; import {TemplateElement, DOM, Element} from 'angular2/src/facade/dom';
import {StringMapWrapper} from 'angular2/src/facade/collection'; import {StringMapWrapper} from 'angular2/src/facade/collection';
import {TemplateConfig} from 'angular2/src/core/annotations/template_config'; import {TemplateConfig} from 'angular2/src/core/annotations/template_config';

View File

@ -32,6 +32,7 @@ export class ProviderError extends Error {
constructResolvingMessage:Function; constructResolvingMessage:Function;
message; message;
constructor(key:Key, constructResolvingMessage:Function) { constructor(key:Key, constructResolvingMessage:Function) {
super();
this.keys = [key]; this.keys = [key];
this.constructResolvingMessage = constructResolvingMessage; this.constructResolvingMessage = constructResolvingMessage;
this.message = this.constructResolvingMessage(this.keys); this.message = this.constructResolvingMessage(this.keys);
@ -87,6 +88,7 @@ export class InstantiationError extends ProviderError {
export class InvalidBindingError extends Error { export class InvalidBindingError extends Error {
message:string; message:string;
constructor(binding) { constructor(binding) {
super();
this.message = `Invalid binding ${binding}`; this.message = `Invalid binding ${binding}`;
} }
@ -98,6 +100,7 @@ export class InvalidBindingError extends Error {
export class NoAnnotationError extends Error { export class NoAnnotationError extends Error {
message:string; message:string;
constructor(typeOrFunc) { constructor(typeOrFunc) {
super();
this.message = `Cannot resolve all parameters for ${stringify(typeOrFunc)}`; this.message = `Cannot resolve all parameters for ${stringify(typeOrFunc)}`;
} }

View File

@ -16,6 +16,7 @@ export class Foreach extends OnChange {
viewPort: ViewPort; viewPort: ViewPort;
iterable; iterable;
constructor(viewPort: ViewPort) { constructor(viewPort: ViewPort) {
super();
this.viewPort = viewPort; this.viewPort = viewPort;
} }
onChange(changes) { onChange(changes) {

View File

@ -18,7 +18,6 @@ export class CONST {}
export class ABSTRACT {} export class ABSTRACT {}
export class IMPLEMENTS {} export class IMPLEMENTS {}
export function isPresent(obj):boolean { export function isPresent(obj):boolean {
return obj !== undefined && obj !== null; return obj !== undefined && obj !== null;
} }
@ -103,6 +102,7 @@ export class StringJoiner {
export class NumberParseError extends Error { export class NumberParseError extends Error {
constructor(message) { constructor(message) {
super();
this.message = message; this.message = message;
} }

View File

@ -89,6 +89,7 @@ export class ControlGroupDirective extends ControlGroupDirectiveBase {
_directives:List<ControlNameDirective>; _directives:List<ControlNameDirective>;
constructor() { constructor() {
super();
this._directives = ListWrapper.create(); this._directives = ListWrapper.create();
} }
@ -121,6 +122,7 @@ export class NewControlGroupDirective extends ControlGroupDirectiveBase {
_directives:List<ControlNameDirective>; _directives:List<ControlNameDirective>;
constructor() { constructor() {
super();
this._directives = ListWrapper.create(); this._directives = ListWrapper.create();
} }

View File

@ -9,6 +9,7 @@ export class XHRMock extends XHR {
_requests: List<Promise>; _requests: List<Promise>;
constructor() { constructor() {
super();
this._expectations = []; this._expectations = [];
this._definitions = MapWrapper.create(); this._definitions = MapWrapper.create();
this._requests = []; this._requests = [];

View File

@ -604,6 +604,7 @@ class TestDispatcher extends ChangeDispatcher {
onChange:Function; onChange:Function;
constructor() { constructor() {
super();
this.log = null; this.log = null;
this.loggedValues = null; this.loggedValues = null;
this.onChange = (_, __) => {}; this.onChange = (_, __) => {};

View File

@ -237,6 +237,7 @@ class TestableCompiler extends Compiler {
class MockStep extends CompileStep { class MockStep extends CompileStep {
processClosure:Function; processClosure:Function;
constructor(process) { constructor(process) {
super();
this.processClosure = process; this.processClosure = process;
} }
process(parent:CompileElement, current:CompileElement, control:CompileControl) { process(parent:CompileElement, current:CompileElement, control:CompileControl) {
@ -247,6 +248,7 @@ class MockStep extends CompileStep {
class FakeShadowDomStrategy extends NativeShadowDomStrategy { class FakeShadowDomStrategy extends NativeShadowDomStrategy {
templateHtml: string; templateHtml: string;
constructor(templateHtml: string) { constructor(templateHtml: string) {
super();
this.templateHtml = templateHtml; this.templateHtml = templateHtml;
} }

View File

@ -199,6 +199,7 @@ export function main() {
class MockStep extends CompileStep { class MockStep extends CompileStep {
processClosure:Function; processClosure:Function;
constructor(process) { constructor(process) {
super();
this.processClosure = process; this.processClosure = process;
} }
process(parent:CompileElement, current:CompileElement, control:CompileControl) { process(parent:CompileElement, current:CompileElement, control:CompileControl) {

View File

@ -412,6 +412,7 @@ class Context {
class MockStep extends CompileStep { class MockStep extends CompileStep {
processClosure:Function; processClosure:Function;
constructor(process) { constructor(process) {
super();
this.processClosure = process; this.processClosure = process;
} }
process(parent:CompileElement, current:CompileElement, control:CompileControl) { process(parent:CompileElement, current:CompileElement, control:CompileControl) {

View File

@ -101,6 +101,7 @@ function assertBinding(pipelineElement, shouldBePresent) {
class MockStep extends CompileStep { class MockStep extends CompileStep {
processClosure:Function; processClosure:Function;
constructor(process) { constructor(process) {
super();
this.processClosure = process; this.processClosure = process;
} }
process(parent:CompileElement, current:CompileElement, control:CompileControl) { process(parent:CompileElement, current:CompileElement, control:CompileControl) {

View File

@ -124,6 +124,7 @@ export function main() {
class MockStep extends CompileStep { class MockStep extends CompileStep {
processClosure:Function; processClosure:Function;
constructor(process) { constructor(process) {
super();
this.processClosure = process; this.processClosure = process;
} }
process(parent:CompileElement, current:CompileElement, control:CompileControl) { process(parent:CompileElement, current:CompileElement, control:CompileControl) {

View File

@ -169,6 +169,7 @@ class TestableProtoElementInjectorBuilder extends ProtoElementInjectorBuilder {
debugObjects:List; debugObjects:List;
constructor() { constructor() {
super();
this.debugObjects = []; this.debugObjects = [];
} }
@ -192,6 +193,7 @@ class TestableProtoElementInjectorBuilder extends ProtoElementInjectorBuilder {
class MockStep extends CompileStep { class MockStep extends CompileStep {
processClosure:Function; processClosure:Function;
constructor(process) { constructor(process) {
super();
this.processClosure = process; this.processClosure = process;
} }
process(parent:CompileElement, current:CompileElement, control:CompileControl) { process(parent:CompileElement, current:CompileElement, control:CompileControl) {

View File

@ -94,6 +94,7 @@ export function main() {
class MockStep extends CompileStep { class MockStep extends CompileStep {
processClosure:Function; processClosure:Function;
constructor(process) { constructor(process) {
super();
this.processClosure = process; this.processClosure = process;
} }
process(parent:CompileElement, current:CompileElement, control:CompileControl) { process(parent:CompileElement, current:CompileElement, control:CompileControl) {

View File

@ -189,6 +189,7 @@ class TestDirectiveMetadataReader extends DirectiveMetadataReader {
shadowDomStrategy; shadowDomStrategy;
constructor(shadowDomStrategy) { constructor(shadowDomStrategy) {
super();
this.shadowDomStrategy = shadowDomStrategy; this.shadowDomStrategy = shadowDomStrategy;
} }

View File

@ -2,7 +2,7 @@ import {describe, xit, it, expect, beforeEach, ddescribe, iit, el} from 'angular
import {View, ProtoView} from 'angular2/src/core/compiler/view'; import {View, ProtoView} from 'angular2/src/core/compiler/view';
import {ViewPort} from 'angular2/src/core/compiler/viewport'; import {ViewPort} from 'angular2/src/core/compiler/viewport';
import {proxy, IMPLEMENTS} from 'angular2/src/facade/lang'; import {proxy, IMPLEMENTS} from 'angular2/src/facade/lang';
import {DOM} from 'angular2/src/facade/dom'; import {DOM, Node} from 'angular2/src/facade/dom';
import {ListWrapper, MapWrapper} from 'angular2/src/facade/collection'; import {ListWrapper, MapWrapper} from 'angular2/src/facade/collection';
import {Injector} from 'angular2/di'; import {Injector} from 'angular2/di';
import {ProtoElementInjector, ElementInjector} from 'angular2/src/core/compiler/element_injector'; import {ProtoElementInjector, ElementInjector} from 'angular2/src/core/compiler/element_injector';
@ -33,7 +33,7 @@ class AttachableChangeDetector {
@IMPLEMENTS(View) @IMPLEMENTS(View)
class HydrateAwareFakeView { class HydrateAwareFakeView {
isHydrated: boolean; isHydrated: boolean;
nodes: List<Nodes>; nodes: List<Node>;
changeDetector: ChangeDetector; changeDetector: ChangeDetector;
rootElementInjectors; rootElementInjectors;
constructor(isHydrated) { constructor(isHydrated) {

View File

@ -60,8 +60,7 @@ function setupReflector() {
}); });
reflector.registerType(Compiler, { reflector.registerType(Compiler, {
'factory': (cd, templateLoader, reader, parser, compilerCache, strategy) 'factory': (cd, templateLoader, reader, parser, compilerCache, strategy) => new Compiler(cd, templateLoader, reader, parser, compilerCache, strategy),
=> new Compiler(cd, templateLoader, reader, parser, compilerCache, strategy),
'parameters': [[ChangeDetection], [TemplateLoader], [DirectiveMetadataReader], 'parameters': [[ChangeDetection], [TemplateLoader], [DirectiveMetadataReader],
[Parser], [CompilerCache], [ShadowDomStrategy]], [Parser], [CompilerCache], [ShadowDomStrategy]],
'annotations': [] 'annotations': []

View File

@ -1,3 +1,5 @@
var _global = typeof window === 'object' ? window : global;
// TODO(vojta): // TODO(vojta):
// - extract into multiple files // - extract into multiple files
// - different error types // - different error types
@ -11,7 +13,32 @@ function argPositionName(i) {
return POSITION_NAME[position] || (position + 'th'); return POSITION_NAME[position] || (position + 'th');
} }
var primitives = $traceurRuntime.type; var primitives;
var genericType;
if (typeof $traceurRuntime === 'object') {
primitives = $traceurRuntime.type;
genericType = $traceurRuntime.genericType;
} else {
// Allow to work without traceur runtime as well!
primitives = {
any: {name: 'any'},
boolean: {name: 'boolean'},
number: {name: 'number'},
string: {name: 'string'},
symbol: {name: 'symbol'},
void: {name: 'void'}
};
genericType = function(type, args) {
return {
type: type,
args: args
}
}
}
Object.keys(primitives).forEach(function(name) {
primitives[name].__assertName = name;
});
export function proxy(){ export function proxy(){
} }
@ -81,6 +108,11 @@ function prettyPrint(value) {
} }
function isType(value, T, errors) { function isType(value, T, errors) {
if (T && T.type) {
// needed for generics.
// TODO(tbosch): read out T.args and do assertions based on them as well!
T = T.type;
}
if (T === primitives.void) { if (T === primitives.void) {
return typeof value === 'undefined'; return typeof value === 'undefined';
} }
@ -198,33 +230,25 @@ function returnType(actual, T) {
return actual; return actual;
} }
// `int` is not a valid JS type, and traceur will leave
// it untouched. However, we want to be able to use it,
// so we provide it as a global
var intType = _global['int'] = define('int', function(value) {
return typeof value === 'number' && value%1 === 0;
});
// TODO(vojta): define these with DSL? // TODO(vojta): define these with DSL?
var string = define('string', function(value) { var string = type.string = define('string', function(value) {
return typeof value === 'string'; return typeof value === 'string';
}); });
// function string() {} var boolean = type.boolean = define('boolean', function(value) {
// string.assert = function(value) {
// return typeof value === 'string';
// };
var boolean = define('boolean', function(value) {
return typeof value === 'boolean'; return typeof value === 'boolean';
}); });
// function boolean() {}
// boolean.assert = function(value) {
// return typeof value === 'boolean';
// };
var number = define('number', function(value) { var number = type.number = define('number', function(value) {
return typeof value === 'number'; return typeof value === 'number';
}); });
// function number() {}
// number.assert = function(value) {
// return typeof value === 'number';
// };
function arrayOf(...types) { function arrayOf(...types) {
return assert.define('array of ' + types.map(prettyPrint).join('/'), function(value) { return assert.define('array of ' + types.map(prettyPrint).join('/'), function(value) {
@ -320,6 +344,10 @@ function assert(value) {
// throw if no type provided // throw if no type provided
assert.type = type; assert.type = type;
for (var prop in primitives) {
assert.type[prop] = primitives[prop];
}
assert.genericType = genericType;
// throw if odd number of args // throw if odd number of args
assert.argumentTypes = assertArgumentTypes; assert.argumentTypes = assertArgumentTypes;
@ -334,6 +362,7 @@ assert.fail = fail;
assert.string = string; assert.string = string;
assert.number = number; assert.number = number;
assert.boolean = boolean; assert.boolean = boolean;
assert.int = intType;
// custom types // custom types
assert.arrayOf = arrayOf; assert.arrayOf = arrayOf;

View File

@ -165,7 +165,6 @@ describe('primitive value check', function() {
}); });
// ## Describing more complex types // ## Describing more complex types
// //
// Often, a simple type check using `instanceof` or `typeof` is not enough. // Often, a simple type check using `instanceof` or `typeof` is not enough.
@ -370,11 +369,39 @@ describe('Traceur', function() {
.toThrowError('Expected to return an instance of void, got null!'); .toThrowError('Expected to return an instance of void, got null!');
}); });
}); });
// Note: `int` is not part of JS types, but rtts_assert exposes a global
// so that it can be used as well.
describe('int', function() {
it('should pass', function() {
var x:int = 10;
});
it('should fail', function() {
expect(() => {
var x:int = 'ok';
}).toThrowError('Expected an instance of int, got "ok"!');
});
it('should fail', function() {
expect(() => {
var x:int = 12.3;
}).toThrowError('Expected an instance of int, got 12.3!');
});
});
describe('generics', function() {
it('should pass', function() {
var list:Array<string> = [];
});
// TODO(tbosch): add assertions based on generics to rtts_assert
});
}); });
// <center><small>
// This documentation was generated from [assert.spec.js](https://github.com/vojtajina/assert/blob/master/test/assert.spec.js) using [Docco](http://jashkenas.github.io/docco/).
// </small></center>
} }

View File

@ -15,7 +15,7 @@
"dependencies": { "dependencies": {
"es6-module-loader": "^0.9.2", "es6-module-loader": "^0.9.2",
"systemjs": "^0.9.1", "systemjs": "^0.9.1",
"traceur": "vojtajina/traceur-compiler#disable-getters-setters", "traceur": "0.0.82",
"which": "~1", "which": "~1",
"zone.js": "0.4.0", "zone.js": "0.4.0",
"googleapis": "1.0.x", "googleapis": "1.0.x",

View File

@ -10,6 +10,7 @@ var TRACEUR_PATH = traceur.RUNTIME_PATH.replace('traceur-runtime.js', 'traceur.j
var SELF_SOURCE_REGEX = /transpiler\/src/; var SELF_SOURCE_REGEX = /transpiler\/src/;
var SELF_COMPILE_OPTIONS = { var SELF_COMPILE_OPTIONS = {
modules: 'register', modules: 'register',
memberVariables: false,
moduleName: true, moduleName: true,
script: false // parse as a module script: false // parse as a module
}; };
@ -74,6 +75,12 @@ function reloadCompiler() {
} }
return m; return m;
}; };
useRttsAssertModuleForConvertingTypesToExpressions();
supportSuperCallsInEs6Patch();
convertTypesToExpressionsInEs6Patch();
removeNonStaticFieldDeclarationsInEs6Patch();
disableGetterSetterAssertionPatch();
} }
function loadModule(filepath, transpile) { function loadModule(filepath, transpile) {
@ -106,3 +113,105 @@ function extend(source, props) {
} }
return res; return res;
} }
// TODO(tbosch): remove when traceur is fixed.
// see https://github.com/google/traceur-compiler/issues/1700
function supportSuperCallsInEs6Patch() {
var traceurVersion = System.map['traceur'];
var ParseTreeMapWriter = System.get(traceurVersion+'/src/outputgeneration/ParseTreeMapWriter').ParseTreeMapWriter;
var _enterBranch = ParseTreeMapWriter.prototype.enterBranch;
ParseTreeMapWriter.prototype.enterBranch = function(location) {
if (!location.start) {
// This would throw...
return;
}
return _enterBranch.apply(this, arguments);
}
}
// TODO(tbosch): Remove when traceur is fixed.
// see https://github.com/google/traceur-compiler/issues/1699
function convertTypesToExpressionsInEs6Patch() {
var traceurVersion = System.map['traceur'];
var TypeToExpressionTransformer = System.get(traceurVersion+'/src/codegeneration/TypeToExpressionTransformer').TypeToExpressionTransformer;
var PureES6Transformer = System.get(traceurVersion+'/src/codegeneration/PureES6Transformer').PureES6Transformer;
var UniqueIdentifierGenerator = System.get(traceurVersion+'/src/codegeneration/UniqueIdentifierGenerator').UniqueIdentifierGenerator;
var _transform = PureES6Transformer.prototype.transform;
PureES6Transformer.prototype.transform = function() {
if (!this._patched) {
this._patched = true;
this.treeTransformers_.splice(0,0, function(tree) {
return new TypeToExpressionTransformer(new UniqueIdentifierGenerator(), this.reporter_).transformAny(tree);
});
}
return _transform.apply(this, arguments);
};
}
// TODO(tbosch): Don't write field declarations in classes when we output to ES6.
// This just patches the writer and does not support moving initializers to the constructor.
// See src/codegeneration/ClassTransformer.js for how to support initializers as well.
// see https://github.com/google/traceur-compiler/issues/1708
function removeNonStaticFieldDeclarationsInEs6Patch() {
var traceurVersion = System.map['traceur'];
var ParseTreeWriter = System.get(traceurVersion+'/src/outputgeneration/ParseTreeWriter').ParseTreeWriter;
var options = System.get(traceurVersion + "/src/Options.js").options;
var _visitPropertyVariableDeclaration = ParseTreeWriter.prototype.visitPropertyVariableDeclaration;
ParseTreeWriter.prototype.visitPropertyVariableDeclaration = function() {
if (options.outputLanguage !== 'es6') {
return _visitPropertyVariableDeclaration.apply(this, arguments);
}
};
}
// TODO(tbosch): Disable getter/setters for assertions until traceur has a flag
// that allows to disable them while keeping assertions and member fields enabled.
// see https://github.com/google/traceur-compiler/issues/1625
// Why:
// - traceur uses field names based on numbers, which can lead to collisions when creating a subclass in a separate compiler run.
// - this rename of fields makes debugging via the repl harder (e.g. via DevTools console)
// - this rename can break JSON conversion of instances
function disableGetterSetterAssertionPatch() {
var traceurVersion = System.map['traceur'];
var MemberVariableTransformer = System.get(traceurVersion+'/src/codegeneration/MemberVariableTransformer').MemberVariableTransformer;
var AnonBlock = System.get(traceurVersion+'/src/syntax/trees/ParseTrees.js').AnonBlock;
MemberVariableTransformer.prototype.transformPropertyVariableDeclaration = function(tree) {
return new AnonBlock(tree.location, []);
}
}
// TODO(tbosch): Get all types from `assert` module and not from `$traceurRuntime`.
// With this a transpile to ES6 does no more include the `$traceurRuntime`.
// see https://github.com/google/traceur-compiler/issues/1706
function useRttsAssertModuleForConvertingTypesToExpressions() {
var traceurVersion = System.map['traceur'];
var original = System.get(traceurVersion+'/src/codegeneration/TypeToExpressionTransformer').TypeToExpressionTransformer;
var patch = System.get('transpiler/src/patch/TypeToExpressionTransformer').TypeToExpressionTransformer;
for (var prop in patch.prototype) {
original.prototype[prop] = patch.prototype[prop];
}
var TypeAssertionTransformer = System.get(traceurVersion+'/src/codegeneration/TypeAssertionTransformer').TypeAssertionTransformer;
var createIdentifierExpression = System.get(traceurVersion+'/src/codegeneration/ParseTreeFactory').createIdentifierExpression;
var parseExpression = System.get(traceurVersion+'/src/codegeneration/PlaceholderParser.js').parseExpression;
TypeAssertionTransformer.prototype.transformBindingElementParameter_ = function(element, typeAnnotation) {
// Copied from https://github.com/google/traceur-compiler/commits/master/src/codegeneration/TypeAssertionTransformer.js
if (!element.binding.isPattern()) {
if (typeAnnotation) {
this.paramTypes_.atLeastOneParameterTyped = true;
} else {
// PATCH start
typeAnnotation = parseExpression(["assert.type.any"]);
// PATCH end
}
this.paramTypes_.arguments.push(
createIdentifierExpression(element.binding.identifierToken),
typeAnnotation);
return;
}
// NYI
}
}

View File

@ -3,49 +3,53 @@ import {ListWrapper, MapWrapper} from 'angular2/src/facade/collection';
import {IterableList} from './fixtures/facade'; import {IterableList} from './fixtures/facade';
export function main() { export function main() {
describe('for..of', function() { // TODO(tbosch): For ... of is not supported by our Dart transpiler right now.
it('should iterate iterable', function() { // Vojta had a traceur branch that reverted https://github.com/google/traceur-compiler/commit/2d12b2f9cea86e4f234c90dcc188b4c7a2881359
var values = ['a', 'b', 'c']; // to make it work, but we should first implement this in a proper way before we start using it!
var result = ListWrapper.create();
for (var value of new IterableList(values)) {
ListWrapper.push(result, value);
}
expect(result).toEqual(values);
});
it('should iterate iterable without var declaration list', function() { // describe('for..of', function() {
var values = ['a', 'b', 'c']; // it('should iterate iterable', function() {
var result = ListWrapper.create(); // var values = ['a', 'b', 'c'];
var value; // var result = ListWrapper.create();
for (value of new IterableList(values)) { // for (var value of new IterableList(values)) {
ListWrapper.push(result, value); // ListWrapper.push(result, value);
} // }
expect(value).toEqual('c'); // expect(result).toEqual(values);
expect(result).toEqual(values); // });
});
it('should iterate maps', function() { // it('should iterate iterable without var declaration list', function() {
var values = [['a', 1], ['b', 2], ['c', 3]]; // var values = ['a', 'b', 'c'];
var result = ListWrapper.create(); // var result = ListWrapper.create();
var map = MapWrapper.createFromPairs(values); // var value;
for (var [key, value] of MapWrapper.iterable(map)) { // for (value of new IterableList(values)) {
ListWrapper.push(result, [key, value]); // ListWrapper.push(result, value);
} // }
expect(result).toEqual(values); // expect(value).toEqual('c');
}); // expect(result).toEqual(values);
// });
it('should iterate maps without var declaration list', function() { // it('should iterate maps', function() {
var values = [['a', 1], ['b', 2], ['c', 3]]; // var values = [['a', 1], ['b', 2], ['c', 3]];
var result = ListWrapper.create(); // var result = ListWrapper.create();
var map = MapWrapper.createFromPairs(values); // var map = MapWrapper.createFromPairs(values);
var key, value; // for (var [key, value] of MapWrapper.iterable(map)) {
for ([key, value] of MapWrapper.iterable(map)) { // ListWrapper.push(result, [key, value]);
ListWrapper.push(result, [key, value]); // }
} // expect(result).toEqual(values);
expect(key).toEqual('c'); // });
expect(value).toEqual(3);
expect(result).toEqual(values); // it('should iterate maps without var declaration list', function() {
}); // var values = [['a', 1], ['b', 2], ['c', 3]];
}); // var result = ListWrapper.create();
// var map = MapWrapper.createFromPairs(values);
// var key, value;
// for ([key, value] of MapWrapper.iterable(map)) {
// ListWrapper.push(result, [key, value]);
// }
// expect(key).toEqual('c');
// expect(value).toEqual(3);
// expect(result).toEqual(values);
// });
// });
} }

View File

@ -19,7 +19,9 @@ import {
SEMI_COLON, SEMI_COLON,
STAR, STAR,
STATIC, STATIC,
VAR VAR,
OPEN_ANGLE,
CLOSE_ANGLE
} from 'traceur/src/syntax/TokenType'; } from 'traceur/src/syntax/TokenType';
import { import {
@ -53,7 +55,7 @@ export class DartParseTreeWriter extends JavaScriptParseTreeWriter {
if (tree.isFinal) { if (tree.isFinal) {
this.write_('final'); this.write_('final');
} }
this.writeType_(tree.typeAnnotation); this.writeTypeAndSpace_(tree.typeAnnotation);
} }
this.writeSpace_(); this.writeSpace_();
@ -78,7 +80,7 @@ export class DartParseTreeWriter extends JavaScriptParseTreeWriter {
} }
visitVariableDeclaration(tree) { visitVariableDeclaration(tree) {
this.writeType_(tree.typeAnnotation); this.writeTypeAndSpace_(tree.typeAnnotation);
this.visitAny(tree.lvalue); this.visitAny(tree.lvalue);
if (tree.initializer !== null) { if (tree.initializer !== null) {
@ -123,7 +125,7 @@ export class DartParseTreeWriter extends JavaScriptParseTreeWriter {
} }
if (tree.name) { if (tree.name) {
this.writeType_(tree.typeAnnotation); this.writeTypeAndSpace_(tree.typeAnnotation);
this.visitAny(tree.name); this.visitAny(tree.name);
} }
@ -152,7 +154,7 @@ export class DartParseTreeWriter extends JavaScriptParseTreeWriter {
this.write_(ASYNC); this.write_(ASYNC);
} }
this.writeType_(tree.typeAnnotation); this.writeTypeAndSpace_(tree.typeAnnotation);
this.visitAny(tree.name); this.visitAny(tree.name);
this.write_(OPEN_PAREN); this.write_(OPEN_PAREN);
this.visitAny(tree.parameterList); this.visitAny(tree.parameterList);
@ -200,7 +202,7 @@ export class DartParseTreeWriter extends JavaScriptParseTreeWriter {
this.writeSpace_(); this.writeSpace_();
} }
this.writeType_(tree.typeAnnotation); this.writeTypeAndSpace_(tree.typeAnnotation);
this.visitAny(tree.name); this.visitAny(tree.name);
this.write_(OPEN_PAREN); this.write_(OPEN_PAREN);
this.visitAny(tree.parameterList); this.visitAny(tree.parameterList);
@ -246,7 +248,7 @@ export class DartParseTreeWriter extends JavaScriptParseTreeWriter {
// resetting type annotation so it doesn't filter down recursively // resetting type annotation so it doesn't filter down recursively
this.currentParameterTypeAnnotation_ = null; this.currentParameterTypeAnnotation_ = null;
this.writeType_(typeAnnotation); this.writeTypeAndSpace_(typeAnnotation);
this.visitAny(tree.binding); this.visitAny(tree.binding);
if (tree.initializer) { if (tree.initializer) {
@ -257,22 +259,44 @@ export class DartParseTreeWriter extends JavaScriptParseTreeWriter {
} }
} }
writeTypeAndSpace_(typeAnnotation) {
this.writeType_(typeAnnotation);
this.writeSpace_();
}
writeType_(typeAnnotation) { writeType_(typeAnnotation) {
if (!typeAnnotation) { if (!typeAnnotation) {
return; return;
} }
var typeNameNode;
var args = [];
if (typeAnnotation.typeName) {
typeNameNode = typeAnnotation.typeName;
args = typeAnnotation.args.args;
} else {
typeNameNode = typeAnnotation;
args = [];
}
// TODO(vojta): Figure out why `typeAnnotation` has different structure when used with a variable. // TODO(vojta): Figure out why `typeNameNode` has different structure when used with a variable.
// This should probably be fixed in Traceur. // This should probably be fixed in Traceur.
var typeName = typeAnnotation.typeToken && typeAnnotation.typeToken.value || (typeAnnotation.name && typeAnnotation.name.value) || null; var typeName = typeNameNode.typeToken && typeNameNode.typeToken.value || (typeNameNode.name && typeNameNode.name.value) || null;
if (!typeName) { if (!typeName) {
return; return;
} }
this.write_(this.normalizeType_(typeName)); this.write_(this.normalizeType_(typeName));
this.writeSpace_(); if (args.length) {
this.write_(OPEN_ANGLE);
this.writeType_(args[0]);
for (var i=1; i<args.length; i++) {
this.write_(COMMA);
this.writeSpace_();
this.writeType_(args[i]);
}
this.write_(CLOSE_ANGLE);
}
} }
// EXPORTS // EXPORTS
@ -427,7 +451,7 @@ export class DartParseTreeWriter extends JavaScriptParseTreeWriter {
this.write_(STATIC); this.write_(STATIC);
this.writeSpace_(); this.writeSpace_();
} }
this.writeType_(tree.typeAnnotation); this.writeTypeAndSpace_(tree.typeAnnotation);
this.writeSpace_(); this.writeSpace_();
this.write_(GET); this.write_(GET);
this.writeSpace_(); this.writeSpace_();

View File

@ -8,28 +8,15 @@ export class Parser extends TraceurParser {
super(file, errorReporter); super(file, errorReporter);
} }
parseTypeName_() { // TODO: add support for object type literals to traceur!
// Copy of original implementation
var typeName = super.parseTypeName_();
// Generics support
if (this.eatIf_(OPEN_ANGLE)) {
var generics = [];
do {
generics.push(this.eatId_());
} while(this.eatIf_(COMMA));
this.eat_(CLOSE_ANGLE);
// TODO: save the generics into the typeName and use them e.g. for assertions, ...
}
return typeName;
}
parseObjectType_() { parseObjectType_() {
//TODO(misko): save the type information
this.eat_(OPEN_CURLY); this.eat_(OPEN_CURLY);
do { do {
var identifier = this.eatId_(); var identifier = this.eatId_();
this.eat_(COLON); this.eat_(COLON);
var type = this.parseNamedOrPredefinedType_(); var type = this.parseNamedOrPredefinedType_();
var typeParameters = this.parseTypeParametersOpt_();
// TODO(misko): save the type information
} while (this.eatIf_(COMMA)); } while (this.eatIf_(COMMA));
this.eat_(CLOSE_CURLY); this.eat_(CLOSE_CURLY);
} }

View File

@ -0,0 +1,43 @@
// Based on https://github.com/google/traceur-compiler/blob/master/src/codegeneration/TypeToExpressionTransformer.js
// Copyright 2012 Traceur Authors.
// Licensed under the Apache License, Version 2.0 (the 'License');
//
// Modifications:
// - use `assert` import, instead of `$traceurRuntime....` so
// that a transpilation to ES6 does not contain any traceur references.
import {ParseTreeTransformer} from 'traceur/src/codegeneration/ParseTreeTransformer.js';
import {
ArgumentList,
IdentifierExpression,
MemberExpression
} from 'traceur/src/syntax/trees/ParseTrees.js';
import {
parseExpression
} from 'traceur/src/codegeneration/PlaceholderParser.js';
export class TypeToExpressionTransformer extends ParseTreeTransformer {
transformTypeName(tree) {
if (tree.moduleName) {
var operand = this.transformAny(tree.moduleName);
return new MemberExpression(tree.location, operand, tree.name);
}
return new IdentifierExpression(tree.location, tree.name);
}
transformPredefinedType(tree) {
return parseExpression `assert.type.${tree.typeToken})`;
}
transformTypeReference(tree) {
var typeName = this.transformAny(tree.typeName);
var args = this.transformAny(tree.args);
var argumentList = new ArgumentList(tree.location, [typeName, ...args]);
return parseExpression `assert.genericType(${argumentList})`;
}
transformTypeArguments(tree) {
return this.transformList(tree.args);
}
}

View File

@ -1,21 +1,24 @@
var compiler = require('../index'); var compiler = require('../index');
// fixme: copied from top of gulpfile var DEFAULT_OPTIONS = {
var OPTIONS = { sourceMaps: false,
sourceMaps: true,
annotations: true, // parse annotations annotations: true, // parse annotations
types: true, // parse types types: true, // parse types
script: false, // parse as a module script: false, // parse as a module
memberVariables: true, // parse class fields memberVariables: true // parse class fields
outputLanguage: 'dart'
}; };
describe('transpile to dart', function(){ describe('transpile to dart', function(){
var options;
beforeEach(function() {
options = merge(DEFAULT_OPTIONS, {outputLanguage: 'dart'});
});
// https://github.com/angular/angular/issues/509 // https://github.com/angular/angular/issues/509
describe('string interpolation', function() { describe('string interpolation', function() {
it('should not interpolate inside old quotes', function(){ it('should not interpolate inside old quotes', function(){
var result = compiler.compile(OPTIONS, "test.js", var result = compiler.compile(options, "test.js",
"var a:number = 1;" + "var a:number = 1;" +
"var s1:string = \"${a}\";" + "var s1:string = \"${a}\";" +
"var s2:string = '\\${a}';" + "var s2:string = '\\${a}';" +
@ -28,7 +31,7 @@ describe('transpile to dart', function(){
}); });
it('should not interpolate without curly braces', function() { it('should not interpolate without curly braces', function() {
var result = compiler.compile(OPTIONS, "test.js", var result = compiler.compile(options, "test.js",
"var a:number = 1;" + "var a:number = 1;" +
"var s1:string = `$a`;" + "var s1:string = `$a`;" +
"var s2:string = `\\$a`;"); "var s2:string = `\\$a`;");
@ -39,7 +42,7 @@ describe('transpile to dart', function(){
}); });
it('should interpolate inside template quotes', function() { it('should interpolate inside template quotes', function() {
var result = compiler.compile(OPTIONS, "test.js", var result = compiler.compile(options, "test.js",
"var a:number = 1;" + "var a:number = 1;" +
"var s1:string = `${a}`;"); "var s1:string = `${a}`;");
expect(result.js).toBe("library test_dart;\n" + expect(result.js).toBe("library test_dart;\n" +
@ -47,4 +50,121 @@ describe('transpile to dart', function(){
"String s1 = '''${a}''';\n"); "String s1 = '''${a}''';\n");
}); });
}); });
describe('generic', function() {
it('should support types without generics', function() {
var result = compiler.compile(options, "test.js",
"var a:List = [];");
expect(result.js).toBe("library test_dart;\nList a = [];\n");
});
it('should support one level generics', function() {
var result = compiler.compile(options, "test.js",
"var a:List<string> = [];");
expect(result.js).toBe("library test_dart;\nList<String> a = [];\n");
});
it('should support multiple one level generics', function() {
var result = compiler.compile(options, "test.js",
"var a:List<A,B> = [];");
expect(result.js).toBe("library test_dart;\nList<A, B> a = [];\n");
});
it('should support nested generics', function() {
var result = compiler.compile(options, "test.js",
"var a:List<A<B>> = [];");
expect(result.js).toBe("library test_dart;\nList<A<B>> a = [];\n");
});
});
}); });
describe('transpile to es6', function() {
var options;
beforeEach(function() {
options = merge(DEFAULT_OPTIONS, {outputLanguage: 'es6', typeAssertions: 'true'});
});
it('should preserve generic type information', function() {
var result = compiler.compile(options, "test.js",
"function f(a:List<string>){}");
expect(result.js).toBe('function f(a) {\n'+
' assert.argumentTypes(a, assert.genericType(List, assert.type.string));\n'+
'}\n'+
'Object.defineProperty(f, "parameters", {get: function() {\n'+
' return [[assert.genericType(List, assert.type.string)]];\n'+
' }});\n');
});
it('should allow super() calls when transpiling to ES6 with source maps', function() {
options = merge(options, {sourceMaps: true});
var result = compiler.compile(options, "test.js",
"class Test {" +
" constructor() { super(); }" +
"}");
expect(result.js).toBe("class Test {\n" +
" constructor() {\n"+
" super();\n"+
" }\n"+
"}\n\n"+
"//# sourceMappingURL=test.map\n");
});
it('should convert types to expressions', function() {
var result = compiler.compile(options, "test.js",
"function f(a:string) {}");
expect(result.js).toBe('function f(a) {\n'+
' assert.argumentTypes(a, assert.type.string);\n'+
'}\n' +
'Object.defineProperty(f, "parameters", {get: function() {\n' +
' return [[assert.type.string]];\n' +
' }});\n');
});
it('should not convert type properties to getter/setters', function() {
var result = compiler.compile(options, "test.js",
"class Test {" +
" constructor() { this.a = 1; }" +
"}");
expect(result.js).toBe("class Test {\n" +
" constructor() {\n"+
" this.a = 1;\n"+
" }\n"+
"}\n");
});
it('should remove class field declarations', function() {
var result = compiler.compile(options, "test.js",
"class Test {" +
" a:number = 1;" +
"}");
expect(result.js).toBe("class Test {}\n");
});
it('should convert types to expressions on "assert" module', function() {
var result = compiler.compile(options, "test.js",
"function f(a:string, b) { return a+b; }");
expect(result.js).toBe('function f(a, b) {\n'+
' assert.argumentTypes(a, assert.type.string, b, assert.type.any);\n'+
' return a + b;\n'+
'}\n'+
'Object.defineProperty(f, "parameters", {get: function() {\n'+
' return [[assert.type.string], []];\n'+
' }});\n');
});
});
function merge(a, b) {
var result = {};
for (var prop in a) {
result[prop] = a[prop];
}
for (var prop in b) {
result[prop] = b[prop];
}
return result;
}

View File

@ -1,6 +0,0 @@
(function(type) {
Object.keys(type).forEach(function(name) {
type[name].__assertName = name;
});
})(window.$traceurRuntime.type);