Skip to content
This repository was archived by the owner on Feb 22, 2018. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions karma-perf.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ module.exports = function(config) {
// optionally 'watched' only.
files: [
'perf/dom/*.dart',
'perf/*_perf.dart',
'test/config/filter_tests.dart',
{pattern: '**/*.dart', watched: true, included: false, served: true},
'packages/browser/dart.js',
Expand Down
2 changes: 1 addition & 1 deletion lib/mock/debug.dart
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ dump([p1, p2, p3, p4, p5, p6, p7, p8, p9, p10]) {
if (p8 != null) log.add(STRINGIFY(p8));
if (p9 != null) log.add(STRINGIFY(p9));
if (p10 != null) log.add(STRINGIFY(p10));
js.context['console'].callMethod('log', log.join(', '));
js.context['console'].callMethod('log', log);
}

STRINGIFY(obj) {
Expand Down
2 changes: 1 addition & 1 deletion perf/dom/compile_perf.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import '_perf.dart';

main() => describe('compiler', () {
describe('block instantiation', () {
iit('time ', inject((TestBed tb) {
it('time ', inject((TestBed tb) {
tb.compile(UL_REPEATER);
var items = [];
for(var i = 0; i < 100; i++) {
Expand Down
1 change: 1 addition & 0 deletions perf/parser_perf.dart
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ main() {
var generatedParser = new DynamicInjector(
modules: [new Module()
..type(Parser, implementedBy: StaticParser)
..type(ParserBackend, implementedBy: DynamicParserBackend)
..value(StaticParserFunctions, generated_functions.functions())],
allowImplicitInjection:true).get(Parser);

Expand Down