Skip to content
This repository has been archived by the owner on Mar 16, 2022. It is now read-only.

Code segment generator will get different imports on unix and macOS, verify-l10n is different on windows #565

Closed
perclasson opened this issue Mar 23, 2020 · 0 comments
Assignees
Labels
migrated Moved to flutter/gallery P2 Priority 2 - Should have

Comments

@perclasson
Copy link
Contributor

perclasson commented Mar 23, 2020

Code segments generator has different output for unix and macOS

See the transformations demo.

In the subsegment transformationsDemo#2 we have the imports and these are the outputs generated on a macOS system:

import 'dart:collection' show IterableMixin;
import 'dart:math';
import 'dart:ui' show Vertices;
import 'package:flutter/material.dart' hide Gradient;
import 'package:vector_math/vector_math_64.dart' show Vector3;

In the subsegment transformationsDemo#3 we have the imports and theser are the outputs generated on Ubuntu:

import 'package:flutter/material.dart';
import 'package:vector_math/vector_math_64.dart' show Vector3;
import 'transformations_demo_inertial_motion.dart';

Verify l10n has different output on Windows

To be debugged.

@perclasson perclasson created this issue from a note in Backlog (Sprint + 1) Mar 23, 2020
@perclasson perclasson changed the title Code segment generator misses imports if there are multiple segments Code segment generator will get different output on unix and macos Mar 23, 2020
@perclasson perclasson changed the title Code segment generator will get different output on unix and macos Code segment generator will get different imports on unix and macOS Mar 23, 2020
@perclasson perclasson self-assigned this Mar 23, 2020
@perclasson perclasson added the P2 Priority 2 - Should have label Mar 23, 2020
@perclasson perclasson changed the title Code segment generator will get different imports on unix and macOS Code segment generator will get different imports on unix and macOS, verify-l10n is different on windows Mar 23, 2020
@perclasson perclasson added this to To do in Sprint 21 via automation Mar 26, 2020
@perclasson perclasson removed this from Sprint + 1 in Backlog Mar 26, 2020
@guidezpl guidezpl added this to To do in Sprint 22 via automation Mar 26, 2020
@perclasson perclasson added the migrated Moved to flutter/gallery label Mar 30, 2020
Sprint 21 automation moved this from To do to Done Mar 30, 2020
Sprint 22 automation moved this from To do to Done Mar 30, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
migrated Moved to flutter/gallery P2 Priority 2 - Should have
Projects
Sprint 21
  
Done
Sprint 22
  
Done
Development

No branches or pull requests

1 participant