// support
This commit is contained in:
parent
bc53e8bae9
commit
cde63e2be2
@ -108,6 +108,7 @@
|
||||
AtomDoStaticClause = Yap_FullLookupAtom("$do_static_clause");
|
||||
AtomDots = Yap_LookupAtom("dots");
|
||||
AtomDOUBLE = Yap_FullLookupAtom("Double");
|
||||
AtomDoubleDash = Yap_FullLookupAtom("//");
|
||||
AtomE = Yap_LookupAtom("e");
|
||||
AtomEOFBeforeEOT = Yap_LookupAtom("end_of_file_found_before_end_of_term");
|
||||
AtomEQ = Yap_LookupAtom("=");
|
||||
@ -465,6 +466,7 @@
|
||||
FunctorDot7 = Yap_MkFunctor(AtomDot,7);
|
||||
FunctorDot8 = Yap_MkFunctor(AtomDot,8);
|
||||
FunctorDot9 = Yap_MkFunctor(AtomDot,9);
|
||||
FunctorDoubleDash = Yap_MkFunctor(AtomDoubleDash,2);
|
||||
FunctorEmptySquareBrackets = Yap_MkFunctor(AtomEmptySquareBrackets,2);
|
||||
FunctorEmptyCurlyBrackets = Yap_MkFunctor(AtomEmptyCurlyBrackets,2);
|
||||
FunctorEq = Yap_MkFunctor(AtomEq,2);
|
||||
|
@ -108,6 +108,7 @@
|
||||
AtomDoStaticClause = AtomAdjust(AtomDoStaticClause);
|
||||
AtomDots = AtomAdjust(AtomDots);
|
||||
AtomDOUBLE = AtomAdjust(AtomDOUBLE);
|
||||
AtomDoubleDash = AtomAdjust(AtomDoubleDash);
|
||||
AtomE = AtomAdjust(AtomE);
|
||||
AtomEOFBeforeEOT = AtomAdjust(AtomEOFBeforeEOT);
|
||||
AtomEQ = AtomAdjust(AtomEQ);
|
||||
@ -465,6 +466,7 @@
|
||||
FunctorDot7 = FuncAdjust(FunctorDot7);
|
||||
FunctorDot8 = FuncAdjust(FunctorDot8);
|
||||
FunctorDot9 = FuncAdjust(FunctorDot9);
|
||||
FunctorDoubleDash = FuncAdjust(FunctorDoubleDash);
|
||||
FunctorEmptySquareBrackets = FuncAdjust(FunctorEmptySquareBrackets);
|
||||
FunctorEmptyCurlyBrackets = FuncAdjust(FunctorEmptyCurlyBrackets);
|
||||
FunctorEq = FuncAdjust(FunctorEq);
|
||||
|
@ -320,6 +320,9 @@
|
||||
Atom AtomDOUBLE_;
|
||||
#define AtomDOUBLE Yap_heap_regs->AtomDOUBLE_
|
||||
#define TermDOUBLE MkAtomTerm( Yap_heap_regs->AtomDOUBLE_ )
|
||||
Atom AtomDoubleDash_;
|
||||
#define AtomDoubleDash Yap_heap_regs->AtomDoubleDash_
|
||||
#define TermDoubleDash MkAtomTerm( Yap_heap_regs->AtomDoubleDash_ )
|
||||
Atom AtomE_;
|
||||
#define AtomE Yap_heap_regs->AtomE_
|
||||
#define TermE MkAtomTerm( Yap_heap_regs->AtomE_ )
|
||||
@ -1339,6 +1342,8 @@
|
||||
#define FunctorDot8 Yap_heap_regs->FunctorDot8_
|
||||
Functor FunctorDot9_;
|
||||
#define FunctorDot9 Yap_heap_regs->FunctorDot9_
|
||||
Functor FunctorDoubleDash_;
|
||||
#define FunctorDoubleDash Yap_heap_regs->FunctorDoubleDash_
|
||||
Functor FunctorEmptySquareBrackets_;
|
||||
#define FunctorEmptySquareBrackets Yap_heap_regs->FunctorEmptySquareBrackets_
|
||||
Functor FunctorEmptyCurlyBrackets_;
|
||||
|
@ -113,6 +113,7 @@ A DomainError N "domain_error"
|
||||
A DoStaticClause F "$do_static_clause"
|
||||
A Dots N "dots"
|
||||
A DOUBLE F "Double"
|
||||
A DoubleDash F "//"
|
||||
A E N "e"
|
||||
A EOFBeforeEOT N "end_of_file_found_before_end_of_term"
|
||||
A EQ N "="
|
||||
@ -470,6 +471,7 @@ F Dot6 Dot 6
|
||||
F Dot7 Dot 7
|
||||
F Dot8 Dot 8
|
||||
F Dot9 Dot 9
|
||||
F DoubleDash DoubleDash 2
|
||||
F EmptySquareBrackets EmptySquareBrackets 2
|
||||
F EmptyCurlyBrackets EmptyCurlyBrackets 2
|
||||
F Eq Eq 2
|
||||
|
Reference in New Issue
Block a user