~sandy-dunlop/wildcatcobol/dev

« back to all changes in this revision

Viewing changes to src/Wildcat.Cobol.Compiler/Structure/DataDescription.cs

  • Committer: Sandy Dunlop
  • Date: 2007-10-14 16:14:53 UTC
  • mfrom: (7.1.5 filewrite)
  • Revision ID: sandy.dunlop@gmail.com-20071014161453-otgf2yviplpqbviq
Merging from filewrite branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
        private ClassDefinition _classDef;
45
45
        private string _extendedType;  //TODO: This shouldn't be a string
46
46
        private bool _isVariableDeclaration;
47
 
        private FileAndSortDescriptionEntry _fsde;
 
47
        private FileAndSortDescriptionEntry _fsde;
 
48
        private bool _isAnonymous;
 
49
        
 
50
        public bool IsAnonymous
 
51
        {
 
52
            get{ return _isAnonymous; }
 
53
            set{_isAnonymous = value; }
 
54
        }
48
55
 
49
56
        public FileAndSortDescriptionEntry FSDE
50
57
        {