This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Last login: Sat Nov 1 12:43:39 on ttys024 | |
| scheglov@scheglov-mac:~/Source/Dart/sdk.git/sdk (master)$ dart /Users/scheglov/Source/Dart/sdk.git/sdk/pkg/analyzer/tool/fine/change_compare_perf.dart | |
| [withFine: false] Initial analysis, 27240 ms | |
| ---------------------------------------------------------------- | |
| (name: <scheduler>, count: 0, elapsed: 0:00:00.000000, elapsedSelf: -0:00:24.214320) | |
| (name: produceErrors, count: 1616, elapsed: 0:00:24.214320, elapsedSelf: 0:00:00.028993) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:flutter/material.dart'; | |
| class MyWidget extends StatelessWidget { | |
| final String firstText; | |
| MyWidget(this.firstText); | |
| factory MyWidget.forDesignTime() { | |
| return _registerWidgetInstance(0, new MyWidget('AA')); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:flutter/material.dart'; | |
| class MyWidget extends StatelessWidget { | |
| final String firstText; | |
| MyWidget(this.firstText); | |
| factory MyWidget.forDesignTime() { | |
| return new MyWidget('AA'); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'dart:io'; | |
| import 'package:analyzer/file_system/physical_file_system.dart'; | |
| import 'package:analyzer/src/context/builder.dart'; | |
| import 'package:analyzer/src/dart/analysis/byte_store.dart'; | |
| import 'package:analyzer/src/dart/analysis/driver.dart'; | |
| import 'package:analyzer/src/dart/analysis/file_byte_store.dart'; | |
| import 'package:analyzer/src/dart/analysis/file_state.dart'; | |
| import 'package:analyzer/src/dart/sdk/sdk.dart'; | |
| import 'package:analyzer/src/generated/sdk.dart'; |