~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:15 UTC
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: sandy.dunlop@gmail.com-20071014161415-ycq6t3nulucpsavw
Fixing an issue with anonymous data definition entries

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
        {