Changeset - 3a12665808e8
[Not reviewed]
default
0 1 0
Drew Perttula - 7 years ago 2018-05-24 06:30:56
drewp@bigasterisk.com
remove old workaround
Ignore-this: b4ec54f90092e42377e8e7179ad05127
1 file changed with 0 insertions and 1 deletions:
0 comments (0 inline, 0 general)
light9/web/graph.coffee
Show inline comments
 
@@ -105,25 +105,24 @@ class AutoDependencies
 
    rerunInners = (cur) =>
 
      toRun = cur.innerHandlers.slice()
 
      for child in toRun
 
        #match = @_handlerIsAffected(child, allPatchSubjs)
 
        #log('match', child.label, match)
 
        #child.innerHandlers = [] # let all children get called again
 
        
 
        @_rerunHandler(child, patch)
 
        rerunInners(child)
 
    rerunInners(@handlers)
 

	
 
  askedFor: (s, p, o, g) ->
 
    return
 
    # SyncedGraph is telling us someone did a query that depended on
 
    # quads in the given pattern.
 
    current = @handlerStack[@handlerStack.length - 1]
 
    if current? and current != @handlers
 
      current.patterns.push([s, p, o, g])
 
      #log('push', s,p,o,g)
 
    #else
 
    #  console.trace('read outside runHandler')
 

	
 
class window.SyncedGraph
 
  # Main graph object for a browser to use. Syncs both ways with
 
  # rdfdb. Meant to hide the choice of RDF lib, so we can change it
0 comments (0 inline, 0 general)