From 0f8f4801bdc6a4f944cf5ad73bd5a9ee8c020ed0 Mon Sep 17 00:00:00 2001 From: Vojta Jina Date: Thu, 8 Jan 2015 12:27:28 -0800 Subject: [PATCH] chore: use fork Traceur with disabled getters/setters It also includes better debugging class method names for WTF. --- package.json | 2 +- tools/transpiler/spec/types_spec.js | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 861b914a56..402c67239f 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "dependencies": { "es6-module-loader": "^0.9.2", "systemjs": "^0.9.1", - "traceur": "0.0.79", + "traceur": "vojtajina/traceur-compiler#disable-getters-setters", "which": "~1", "zone.js": "0.3.0" }, diff --git a/tools/transpiler/spec/types_spec.js b/tools/transpiler/spec/types_spec.js index 478b0f385d..e416b5f431 100644 --- a/tools/transpiler/spec/types_spec.js +++ b/tools/transpiler/spec/types_spec.js @@ -1,4 +1,4 @@ -import {describe, it, expect, IS_DARTIUM} from 'test_lib/test_lib'; +import {describe, xdescribe, it, expect, IS_DARTIUM} from 'test_lib/test_lib'; class A {} class B {} @@ -70,7 +70,7 @@ export function main() { f.typedVariables(); }); - describe('class fields', function() { + xdescribe('class fields', function() { it('should fail when setting wrong type value', function() { var wf = new WithFields(); @@ -87,7 +87,7 @@ export function main() { }); }); - describe('static class fields', function() { + xdescribe('static class fields', function() { it('should fail when setting wrong type value', function() { expect(function() { WithFields.id = true;