Package mini_c

Class Pfile


  • class Pfile
    extends java.lang.Object
    Point d'entrée de la syntaxe abstraite issue du parseur.
    Un fichier C est une liste de déclarations.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      (package private) java.util.LinkedList<Pdecl> l  
    • Constructor Summary

      Constructors 
      Constructor Description
      Pfile​(java.util.LinkedList<Pdecl> l)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      (package private) void accept​(Pvisitor v)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • l

        java.util.LinkedList<Pdecl> l
    • Constructor Detail

      • Pfile

        public Pfile​(java.util.LinkedList<Pdecl> l)
    • Method Detail