Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PosXlogue (0.08 sec)

  1. src/cmd/internal/src/pos.go

    	PosNotStmt                 // Position should not be a statement boundary, but line should be preserved for profiling and low-level debugging purposes.
    )
    
    type PosXlogue uint
    
    const (
    	PosDefaultLogue PosXlogue = iota
    	PosPrologueEnd
    	PosEpilogueBegin
    )
    
    func makeLicoRaw(line, col uint) lico {
    	return lico(line<<lineShift | col<<colShift)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  2. src/cmd/internal/src/xpos.go

    	}
    	p.lico = makeBogusLico()
    	return p
    }
    
    // WithXlogue returns the same location but marked with DWARF function prologue/epilogue
    func (p XPos) WithXlogue(x PosXlogue) XPos {
    	p.lico = p.lico.withXlogue(x)
    	return p
    }
    
    // LineNumber returns a string for the line number, "?" if it is not known.
    func (p XPos) LineNumber() string {
    	if !p.IsKnown() {
    		return "?"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top