All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gw.lang.reflect.gs.IGosuClassParser Maven / Gradle / Ivy

There is a newer version: 1.18.2
Show newest version
/*
 * Copyright 2014 Guidewire Software, Inc.
 */

package gw.lang.reflect.gs;

import gw.lang.parser.IParserPart;
import gw.lang.parser.exceptions.ParseResultsException;
import gw.lang.parser.exceptions.ParseException;
import gw.lang.parser.ISymbolTable;

import java.util.List;

public interface IGosuClassParser extends IParserPart
{
  void parseDeclarations( IGosuClass gsClass ) throws ParseResultsException;

  void parseDefinitions( IGosuClass gsClass ) throws ParseResultsException;

  List resolveFunctionAndPropertyDecls( ISymbolTable table );
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy