OLD | NEW |
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 library glob.list_tree; | 5 library glob.list_tree; |
6 | 6 |
7 import 'dart:io'; | 7 import 'dart:io'; |
8 import 'dart:async'; | 8 import 'dart:async'; |
9 | 9 |
10 import 'package:path/path.dart' as p; | 10 import 'package:path/path.dart' as p; |
(...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
411 /// a path separator. | 411 /// a path separator. |
412 SequenceNode _join(Iterable<AstNode> components) { | 412 SequenceNode _join(Iterable<AstNode> components) { |
413 var componentsList = components.toList(); | 413 var componentsList = components.toList(); |
414 var nodes = [componentsList.removeAt(0)]; | 414 var nodes = [componentsList.removeAt(0)]; |
415 for (var component in componentsList) { | 415 for (var component in componentsList) { |
416 nodes.add(new LiteralNode('/')); | 416 nodes.add(new LiteralNode('/')); |
417 nodes.add(component); | 417 nodes.add(component); |
418 } | 418 } |
419 return new SequenceNode(nodes); | 419 return new SequenceNode(nodes); |
420 } | 420 } |
OLD | NEW |