Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isMethodCall (0.22 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/loopclosure/loopclosure.go

    	for {
    		labelStmt, ok := stmt.(*ast.LabeledStmt)
    		if !ok {
    			return stmt, labeled
    		}
    		labeled = true
    		stmt = labelStmt.Stmt
    	}
    }
    
    // isMethodCall reports whether expr is a method call of
    // <pkgPath>.<typeName>.<method>.
    func isMethodCall(info *types.Info, expr ast.Expr, pkgPath, typeName, method string) bool {
    	call, ok := expr.(*ast.CallExpr)
    	if !ok {
    		return false
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    	$.fn.jstree = function (settings) {
    		var isMethodCall = (typeof settings == 'string'), // is this a method call like $().jstree("open_node")
    			args = Array.prototype.slice.call(arguments, 1),
    			returnValue = this;
    
    		// if a method call execute the method on all selected instances
    		if(isMethodCall) {
    			if(settings.substring(0, 1) == '_') { return returnValue; }
    			this.each(function() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
Back to top