Skip to content

Instantly share code, notes, and snippets.

let t,
F,F2,F3,F4,
G,G2,G3,G4,
E,E2,E3,E4,
obj,obj2,obj3,obj4,obj5,obj6,obj7,obj8
F = function(){ this.a = 1 }
F.prototype.setA = function(v){ this.a = v }
F2 = function(){ this.a = 1; this.b = 1 }
@Talleyran
Talleyran / all_engine.js
Created November 15, 2012 20:51
js test
var t,
F,F2,F3,F4,
G,G2,G3,G4,
E,E2,E3,E4,
obj,obj2,obj3,obj4,obj5,obj6,obj7,obj8
F = function(){ this.a = 1 }
F.prototype.setA = function(v){ this.a = v }
F2 = function(){ this.a = 1; this.b = 1 }
<!DOCTYPE html>
<html>
<head>
<title>bench</title>
<meta charset="UTF-8">
<script src='redtea.js' type='text/javascript'></script>
<script src='underscore.js' type='text/javascript'></script>
<script src='jquery-1.9.0.js' type='text/javascript'></script>
</head>
require 'rubygems'
require "./lib/conf"
require "./lib/ingeo_func"
(ARGV.size-1).times do|i|
if ARGV[i]=="-L" || ARGV[i]=="--layer"
@layer_id = ARGV[i+1]
end