Examples of AliasableEntry


Examples of com.google.speedtracer.client.model.V8SymbolTable.AliasableEntry

    return "com.google.speedtracer.Common";
  }

  public void testSymbolTable() {
    V8SymbolTable symbolTable = new V8SymbolTable();
    AliasableEntry mockSymbolType = new AliasableEntry("Mock", 1);
    V8Symbol symbolOne = new V8Symbol("test1", mockSymbolType, 0x100, 0x10);
    assertEquals("test1 : 0x100-0x110", symbolOne.toString());
    symbolTable.add(symbolOne);
    V8Symbol symbolTwo = new V8Symbol("test2", mockSymbolType, 0x120, 0x5);
    assertEquals("test2 : 0x120-0x125", symbolTwo.toString());
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.