blob: bc1f932c19410e23223d6639ae606770545dbc86 [file] [log] [blame]
//
// WXWebGLTypes.m
// PonyDebuggerDerivedSources
//
// Generated on 8/23/12
//
// Licensed to Square, Inc. under one or more contributor license agreements.
// See the LICENSE file distributed with this work for the terms under
// which Square, Inc. licenses this file to you.
//
#import "WXWebGLTypes.h"
@implementation WXWebGLCall
+ (NSDictionary *)keysToEncode;
{
static NSDictionary *mappings = nil;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
mappings = [[NSDictionary alloc] initWithObjectsAndKeys:
@"functionName",@"functionName",
nil];
});
return mappings;
}
@dynamic functionName;
@end
@implementation WXWebGLTraceLog
+ (NSDictionary *)keysToEncode;
{
static NSDictionary *mappings = nil;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
mappings = [[NSDictionary alloc] initWithObjectsAndKeys:
@"id",@"identifier",
@"calls",@"calls",
nil];
});
return mappings;
}
@dynamic identifier;
@dynamic calls;
@end