~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-17 20:32:44 UTC
  • Revision ID: sandy.dunlop@gmail.com-20071017203244-aexozkeoqy6vmf1r
Added keywords: ZEROS, ZEROES, LOW-VALUE, LOW-VALUES, QUOTE, QUOTES, ALL
And made sure that plurals are treated the same as singular forms.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
        private int _size;
29
29
        private int _level;
30
30
        private bool _isSpaces;
31
 
        private bool _isHighValue;
32
31
        private bool _isHighValues;
33
32
        private string _redefines;
34
33
        private DataDescription _redefinesDefinition;
65
64
            set { _isVariableDeclaration = value; }
66
65
        }
67
66
 
68
 
        public bool IsHighValue
69
 
        {
70
 
            get { return _isHighValue; }
71
 
            set { _isHighValue = value; }
72
 
        }
73
 
 
74
67
        public bool IsHighValues
75
68
        {
76
69
            get { return _isHighValues; }