Exemple #1
0
        private void ParseFileSchema()
        {
            var fileSchema = new StepFileSchema();

            Expect(StepTokenKind.StandardKeyword, "FILE_SCHEMA");

            StepConvert.PopulateObject(fileSchema, ParseParameterList());

            Expect(StepTokenKind.Semicolon);

            ProcessFileSchema(fileSchema);
        }
Exemple #2
0
 protected virtual void ProcessFileSchema(StepFileSchema fileSchema)
 {
 }