Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 22 of 22 for varDecl (0.28 sec)

  1. src/syscall/mksyscall_libc.pl

    package $package
    
    import "unsafe"
    EOF
    
    print "import \"syscall\"\n" if $package ne "syscall";
    
    my $vardecls = "\t" . join(",\n\t", @vars);
    $vardecls .= " libcFunc";
    
    chomp($_=<<EOF);
    
    $dynimports
    $linknames
    type libcFunc uintptr
    
    var (
    $vardecls
    )
    
    $text
    EOF
    print $_;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 11:28:51 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. doc/go_spec.html

    <a href="#Package_initialization"><code>init</code> function</a> declarations,
    and like the blank identifier it does not introduce a new binding.
    </p>
    
    <pre class="ebnf">
    Declaration   = ConstDecl | TypeDecl | VarDecl .
    TopLevelDecl  = Declaration | FunctionDecl | MethodDecl .
    </pre>
    
    <p>
    The <i>scope</i> of a declared identifier is the extent of source text in which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
Back to top