Exemplo n.º 1
0
 /// <summary>
 /// Stores a given resolved entry at a given location.
 /// </summary>
 public virtual void AddResolvedEntry(FilePosition location, ResolvedEntry entry)
 {
     CurrentFileModule?.AddResolvedEntry(location, entry);
 }
Exemplo n.º 2
0
 /// <summary>
 /// Stores a given resolved entry by a given name.
 /// </summary>
 public virtual void AddResolvedEntry(FullSymbol fullName, ResolvedEntry entry)
 {
     CurrentFileModule?.AddResolvedEntry(fullName, entry);
 }
Exemplo n.º 3
0
        // Following set of methods are used in V2 name resolution based on a semantic information from the checker.

        /// <summary>
        /// Stores a given function at a given location.
        /// </summary>
        public virtual void AddResolvedEntry(FilePosition location, FunctionLikeExpression lambda)
        {
            CurrentFileModule?.AddResolvedEntry(location, lambda);
        }