~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-09-06 08:37:30 UTC
  • Revision ID: sandyd@marvin.memex.co.uk-20070906083730-igth5168f6pq8i7q
Implementing more of sequential file writing

Show diffs side-by-side

added added

removed removed

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