Changeset 16723 for branches/2521_ProblemRefactoring/HeuristicLab.CodeEditor/3.4/LanguageFeatures/CodeFolding/CSharp
- Timestamp:
- 03/28/19 16:54:20 (6 years ago)
- Location:
- branches/2521_ProblemRefactoring
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring
- Property svn:mergeinfo changed
-
branches/2521_ProblemRefactoring/HeuristicLab.CodeEditor/3.4/LanguageFeatures/CodeFolding/CSharp/CSharpCodeFoldingContext.cs
r16692 r16723 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2521_ProblemRefactoring/HeuristicLab.CodeEditor/3.4/LanguageFeatures/CodeFolding/CSharp/CSharpCodeFoldingStrategy.cs
r16692 r16723 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2521_ProblemRefactoring/HeuristicLab.CodeEditor/3.4/LanguageFeatures/CodeFolding/CSharp/FoldingVisitor.cs
r11700 r16723 17 17 // DEALINGS IN THE SOFTWARE. 18 18 19 using System;20 19 using System.Collections.Generic; 21 20 using System.Linq; … … 26 25 using ICSharpCode.NRefactory.Editor; 27 26 28 namespace CSharpBinding.Parser 29 { 30 // TODO: move this class + NewFolding to NRefactory 31 class FoldingVisitor : DepthFirstAstVisitor 27 namespace CSharpBinding.Parser { 28 // TODO: move this class + NewFolding to NRefactory 29 class FoldingVisitor : DepthFirstAstVisitor 32 30 { 33 31 internal List<NewFolding> foldings = new List<NewFolding> ();
Note: See TracChangeset
for help on using the changeset viewer.