pluotsorbet/context.js

10 строки
238 B
JavaScript
Исходник Обычный вид История

2014-07-24 01:00:36 +04:00
/* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab: */
'use strict';
function Context(thread) {
2014-07-24 11:48:21 +04:00
this.frames = [];
2014-07-24 01:00:36 +04:00
this.thread = thread;
2014-07-24 01:28:32 +04:00
}