API-CHANGES.txt 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838
  1. 0.20.0:
  2. * Remove amber/boot api globalJsVariables.
  3. - SmalltalkImage >>
  4. - legacyGlobalJsVariables
  5. 0.19.1:
  6. * Deprecate amber/boot api nextId, prop globalJsVariables.
  7. * Remove amber/boot prop reservedWords (with the hope no one uses it directly).
  8. * Deprecate ProtoObject >> identityHash.
  9. * Deprecate SmalltalkImage >> packageAt: in favour of explicit #packageAt:if{Absent,Present}:.
  10. + AmberBootstrapInitialization class >>
  11. + run
  12. + initializeClasses
  13. + organizeClasses
  14. + organizeMethods
  15. + Behavior >>
  16. + basicOrganization
  17. + basicOrganization:
  18. + ClassOrganizer >>
  19. + theClass
  20. + ClassOrganizer class >>
  21. + on:
  22. + Compiler class >>
  23. + eval:
  24. + JavaScriptException >>
  25. + shouldBeStubbed
  26. + wrap
  27. + Message class >>
  28. + selector:arguments:notUnderstoodBy:
  29. + MethodContext >>
  30. + stubHere
  31. + stubToAtMost:
  32. + NonBooleanReceiver class >>
  33. + signalOn:
  34. + Package >>
  35. + evalBlock
  36. + evalBlock:
  37. + Package class >>
  38. + named:javaScriptDescriptor:
  39. + SmalltalkImage >>
  40. + packageDictionary
  41. + packageAt:ifPresent:
  42. + TBehaviorProvider >>
  43. + methodOrganizationEnter:andLeave:
  44. + TMasterBehavior >>
  45. + definedMethods
  46. + enterOrganization
  47. + leaveOrganization
  48. + Trait >>
  49. + basicOrganization
  50. + basicOrganization:
  51. + UndefinedObject >>
  52. + ==
  53. + Number >>
  54. + min:max:
  55. + degreesToRadians
  56. + radiansToDegrees
  57. + arcTan:
  58. + between:and:
  59. + Number class >>
  60. + radiansPerDegree
  61. + Point >>
  62. + dotProduct:
  63. + normal
  64. + angle
  65. + normalized
  66. + r
  67. + corner:
  68. + extent:
  69. + rectangle:
  70. + Rectangle >>
  71. + =
  72. + corner
  73. + origin
  74. + containsPoint:
  75. + containsRect:
  76. + printOn:
  77. + Rectangle class >>
  78. + origin:corner:
  79. + origin:extent:
  80. + point:point:
  81. - Package >>
  82. - basicName:
  83. - basicImports
  84. - ProtoObject >>
  85. - isSameInstanceAs:
  86. - ObjectTest >>
  87. - testIdentityHash
  88. 0.19.0:
  89. * Remove class Thenable, add trait TThenable.
  90. * Behavior / Trait hierarchy uses traits.
  91. + NativeFunction class >>
  92. + isNativeFunction:
  93. + IRInstructions >>
  94. + isSelf
  95. + isSuper
  96. + IRVariable >>
  97. + isSelf
  98. + isSuper
  99. + ScopeVar >>
  100. + isSelf
  101. + isSuper
  102. + PseudoVar >>
  103. + isSelf
  104. + isSuper
  105. +UndefinedObject >>
  106. + identityHash
  107. + value
  108. + amber/boot api >>
  109. + nilAsValue
  110. - IRSend >>
  111. - isSuperSend
  112. 0.18.3:
  113. * Move {add,remove}Element from Array.prototype to kernel API.
  114. * New superclass of Behavior named BehaviorBody, pushed up some methods.
  115. * Represents named holder of methods; hierarchy and instantiation left to Behavior.
  116. * Add class Trait as subclass of BehaviorBody.
  117. * Add class TraitTransformation.
  118. * Deprecate #asJSON in favour of #asJavaScriptObject.
  119. * Deprecate #asJavascript in favour of #asJavaScriptSource.
  120. + BehaviorBody >>
  121. + setTraitComposition:
  122. + traitCompositionDefinition
  123. + traitUsers
  124. + allSubclassesDo:
  125. + superclass
  126. + Trait >>
  127. + allInstanceVariableNames
  128. + allSubclassesDo:
  129. + asJavascript
  130. + asTraitComposition
  131. + category
  132. + classTag
  133. + definition
  134. + package
  135. + superclass
  136. + theMetaClass
  137. + theNonMetaClass
  138. + exportBehaviorDefinitionTo:using:
  139. + traitUsers
  140. + package:
  141. + Trait class >>
  142. + named:package:
  143. + named:uses:package:
  144. + TraitTransformation >>
  145. + -
  146. + @
  147. + addAliases:
  148. + addExclusions:
  149. + aliases
  150. + asJSON
  151. + asJavascript
  152. + asTraitComposition
  153. + asTraitTransformation
  154. + definition
  155. + exclusions
  156. + initialize
  157. + postCopy
  158. + trait
  159. + trait:
  160. + Collection >>
  161. + copyWithout:
  162. + SequenceableCollection >>
  163. + reverseDo:
  164. + Array >>
  165. + asTraitComposition
  166. + amber/boot api >>
  167. + addElement
  168. + removeElement
  169. + wrapJavaScript
  170. + CharacterArray >>
  171. + asSymbolPrintOn:
  172. + symbolPrintString
  173. + String >>
  174. + isSelector
  175. + StringStream >>
  176. + print:
  177. + printSymbol:
  178. + Package >>
  179. + traitCompositions
  180. + Class >>
  181. + subClass:
  182. + subClass:uses:
  183. + subClass:uses:instanceVariables:
  184. + subClass:uses:instanceVariables:category:
  185. + subClass:uses:instanceVariables:classVariables:poolDictionaries:category:
  186. + subClass:uses:instanceVariables:package:
  187. + UndefinedObject >>
  188. + subClass:
  189. + subClass:uses:
  190. + subClass:uses:instanceVariables:
  191. + subClass:uses:instanceVariables:category:
  192. + subClass:uses:instanceVariables:classVariables:poolDictionaries:category:
  193. + subClass:uses:instanceVariables:package:
  194. + Metaclass >>
  195. + uses:instanceVariableNames:
  196. - Association >>
  197. - importsString
  198. - String >>
  199. - importsString
  200. - AbstractExporter
  201. - classNameFor:
  202. - Exporter >>
  203. - jsClassNameFor:
  204. 0.18.2:
  205. * Add Platform-DOM package with DOM-related stuff.
  206. * Platform-DOM not loaded by default. Packages that will use it will import it.
  207. + PlatformDom class >>
  208. + isFeasible
  209. + isDomNode:
  210. + newCustomEvent:detail:
  211. + toArray:
  212. + CharacterArray >>
  213. + asDomNode
  214. + Collection >>
  215. + asDomNode
  216. + JSObjectProxy >>
  217. + asDomNode
  218. + String >>
  219. + htmlTextContent
  220. 0.18.1:
  221. + ASTNode >>
  222. + withTail:
  223. - SendNode >>
  224. - valueWithReceiver:
  225. 0.18.0:
  226. * Remove class RethrowErrorHandler (hack for cli before 0.12.3).
  227. * Add Kernel-Dag package with abstract DAG-node and DAG-node visitor.
  228. * Some internal API changes in Compiler-* (including the move to DAG-node).
  229. - Object >>
  230. - throw:
  231. 0.17.0:
  232. * Remove classes InterfacingObject, PlatformInterface.
  233. * Deprecate $boot.nil (use $boot.nilAsReceiver).
  234. + amber/boot api >>
  235. + nilAsReceiver
  236. - NativeFunction class >>
  237. - constructor:
  238. - constructor:value:
  239. - constructor:value:value:
  240. - constructor:value:value:value:
  241. 0.16.1:
  242. * Deprecate $boot.dnu (use $boot.nilAsClass).
  243. + amber/boot api >>
  244. + nilAsClass
  245. 0.16.0:
  246. * Deprecate ClassBuilder >> setupClass:
  247. * $core.initialize now returns a Promise
  248. * $core.addClass now returns the class
  249. + amber/boot api >>
  250. + send2
  251. + traverseClassTree
  252. + Promise class >>
  253. + new
  254. - amber/boot api >>
  255. - wrapClassName
  256. - send
  257. - allSubclasses
  258. - AbstractCodeGenerator >>
  259. - classNameFor:
  260. 0.15.1:
  261. * Thenable class added
  262. * Promise class added, wraps JS Promise, subclass of Thenable
  263. + Thenable >>
  264. + catch:
  265. + on:do:
  266. + on:do:catch:
  267. + then:
  268. + then:catch:
  269. + then:on:do:
  270. + then:on:do:catch:
  271. + JSObjectProxy >>
  272. + catch:
  273. + on:do:
  274. + on:do:catch:
  275. + then:
  276. + then:catch:
  277. + then:on:do:
  278. + then:on:do:catch:
  279. + amber/boot api >>
  280. + seamless
  281. + Promise class >>
  282. + new:
  283. + forBlock:
  284. + value:
  285. + signal:
  286. + all:
  287. + any:
  288. 0.14.18:
  289. * Some internal API changes in Compiler-*.
  290. 0.14.14:
  291. * InterfacingObject >> ajax: deprecated
  292. * PlatformInterface class deprecated
  293. * Class BrowserInterface removed
  294. * Class Terminal, BrowserTerminal added
  295. * Class Platform, BrowserPlatform added
  296. + Environment >>
  297. + renamePackage:to:
  298. + Platform class >>
  299. + globals
  300. + newXhr
  301. + Terminal class >>
  302. + alert:
  303. + confirm:
  304. + prompt:
  305. + prompt:default:
  306. SmalltalkImage >>
  307. + existsJsGlobal:
  308. - PlatformInterface class >>
  309. - initialize
  310. - setWorker:
  311. 0.14.12:
  312. + JSObjectProxy >>
  313. + putOn:
  314. + ProtoStream >>
  315. + nextPutJSObject:
  316. 0.14.11:
  317. * Basic streaming protocol extracted from Stream to ProtoStream
  318. + Object >>
  319. + in:
  320. + JSObjectProxy >>
  321. + in:
  322. 0.14.10:
  323. + JSObjectProxy class >>
  324. + addObjectVariablesTo:ofProxy:
  325. + compareJSObjectOfProxy:withProxy:
  326. + forwardMessage:withArguments:ofProxy:
  327. + jsObject:ofProxy:
  328. + lookupProperty:ofProxy:
  329. - JSObjectProxy >>
  330. - jsObject:
  331. - lookupProperty:
  332. - compareJSObjectWith:
  333. - addObjectVariablesTo:
  334. - forwardMessage:withArguments:
  335. 0.14.4:
  336. + AmdExporter >>
  337. + importsForOutput:
  338. + AbstractCodeGenerator >>
  339. + currentPackage
  340. + currentPackage:
  341. + Compiler >>
  342. + currentPackage
  343. + currentPackage:
  344. + compile:forClass:protocol:
  345. + compileNode:forClass:package:
  346. + SemanticAnalyzer >>
  347. + thePackage
  348. + thePackage:
  349. + isVariableUndefined:inPackage:
  350. - Compiler >>
  351. - compile:
  352. - compile:forClass:
  353. - compileExpression:
  354. - SemanticAnalyzer >>
  355. - isVariableGloabllyUndefined:
  356. - Behavior >>
  357. - compile:
  358. 0.14.3:
  359. * #heliosClass is now #classTag
  360. + Compiler >>
  361. + eval:forPackage:
  362. + Behavior >>
  363. + packageOfProtocol:
  364. + Exporter >>
  365. + exportPackageContextOf:on:
  366. + exportPackageImportsOf:on:
  367. + Package >>
  368. + basicImports
  369. + imports
  370. + imports:
  371. + importsDefinition
  372. + importsFromJson:
  373. + importsAsJson
  374. + sortedImportsAsArray
  375. + validateImports:
  376. + Package class >>
  377. + named:imports:transport:
  378. + Association >>
  379. + importsString
  380. + String >>
  381. + importsString
  382. + ProtoObject >>
  383. + ifNil:
  384. + ifNil:ifNotNil:
  385. + ifNotNil:
  386. + ifNotNil:ifNil:
  387. + isNil
  388. + notNil
  389. - Object >>
  390. - ifNil:
  391. - ifNil:ifNotNil:
  392. - ifNotNil:
  393. - ifNotNil:ifNil:
  394. - isNil
  395. - notNil
  396. 0.14.1:
  397. * NativeFunction class >> constructor:[value:...] deprecated
  398. + NativeFunction class >>
  399. + constructorNamed:
  400. + constructorNamed:value:
  401. + constructorNamed:value:value:
  402. + constructorNamed:value:value:value:
  403. + constructorOf:
  404. + constructorOf:value:
  405. + constructorOf:value:value:
  406. + constructorOf:value:value:value:
  407. + functionNamed:
  408. + functionNamed:value:
  409. + functionNamed:value:value:
  410. + functionNamed:value:value:value:
  411. + functionNamed:valueWithArgs:
  412. + functionOf:
  413. + functionOf:value:
  414. + functionOf:value:value:
  415. + functionOf:value:value:value:
  416. + functionOf:valueWithArgs:
  417. + methodOf:this:
  418. + methodOf:this:value:
  419. + methodOf:this:value:value:
  420. + methodOf:this:value:value:value:
  421. + methodOf:this:valueWithArgs:
  422. + SmalltalkImage >>
  423. + optOut:
  424. + cancelOptOut:
  425. 0.14.0:
  426. + Object >>
  427. + asJQuery
  428. + asJQueryInContext:
  429. + BlockClosure >>
  430. + asJQuery
  431. + asJQueryInContext:
  432. - AnnouncementSubscription >>
  433. - block
  434. - block:
  435. - Collection >>
  436. - contains:
  437. - String >>
  438. - asSelector
  439. - asJavaScriptSelector
  440. - SmalltalkImage >>
  441. - at:
  442. - at:ifAbsent:
  443. - at:put:
  444. - current
  445. - vm
  446. - createPackage:properties:
  447. - MethodContext >>
  448. - temps
  449. - Object >>
  450. - try:catch:
  451. 0.13.2:
  452. + SourceArea class >>
  453. + codeMirror
  454. 0.13.1:
  455. * String >> asSelector is now String >> asJavaScriptMethodName
  456. * String >> asJavaScriptSelector is now String >> asJavaScriptPropertyName
  457. * smalltalk.selector is now smalltalk.st2js
  458. * smalltalk.convertSelector is now smalltalk.js2st
  459. * Collection >> ifEmpty:ifNotEmpty: family passes self to ifNotEmpty: block
  460. * Smalltalk vm is now Smalltalk core
  461. * boot.js's .vm is now .api
  462. * amber load sets' .vm is now .api
  463. * Internal variables smalltalk/globals/_st are now $core/$globals/$recv
  464. + smalltalk.
  465. + accessJavaScript
  466. + Object >>
  467. + postMessageTo:
  468. + postMessageTo:origin:
  469. + Class >>
  470. + heliosClass
  471. + SmalltalkImage >>
  472. + core
  473. + amber/boot exports
  474. + api
  475. + amber/{devel,deploy,lang} exports
  476. + api
  477. - ProtoObject class >>
  478. - heliosClass
  479. - Object class >>
  480. - heliosClass
  481. 0.12.6:
  482. + String >>
  483. + value:
  484. + ProtocolAnnouncement >>
  485. + package
  486. + Behavior >>
  487. + isTestClass
  488. + Package >>
  489. + isTestPackage
  490. + amber/{devel,deploy,lang} exports
  491. + nil
  492. + amber/helpers exports
  493. + nil
  494. 0.12.4:
  495. * Package Canvas renamed to Web
  496. * Object >> try:catch: deprecated in favour of BlockClosure >> tryCatch:
  497. + Announcer >>
  498. + on:do:for:
  499. + Node >>
  500. + navigationNodeAt:ifAbsent:
  501. + BlockClosure >>
  502. + tryCatch:
  503. + Environment >>
  504. + evaluate:for:
  505. + AmberCli >>
  506. + version:
  507. + Object >>
  508. + deprecatedAPI:
  509. - Environment >>
  510. - eval:on:
  511. - evaluateString:on:
  512. 0.12.3:
  513. * Package Import-Export renamed to Kernel-ImportExport
  514. * A dozen of methods moved from Object to ProtoObject
  515. * HashedCollection >> at:ifAbsentPut: pushed up to SequenceableCollection
  516. * HashedCollection >> , is now allowed (removed shouldNotImplement)
  517. * HashedCollection and Dictionary both subclasses of AssociativeCollection
  518. * Smalltalk class moved to SmalltalkImage class, Smalltalk is now global var
  519. * Smalltalk current deprecated in favour of Smalltalk
  520. * Smalltalk at:[put:] deprecated in favour of Smalltalk globals at:[put:]
  521. * <smalltalk.ClassName> deprecated in favour of <globals.ClassName>
  522. + CompiledMethod >>
  523. + defaultProtocol
  524. + Behavior >>
  525. + compile:protocol:
  526. + removeProtocolIfEmpty:
  527. + Package >>
  528. + load
  529. + loadFromNamespace:
  530. + Package class >>
  531. + load:
  532. + load:fromNamespace:
  533. + PackageTransport >> load
  534. + PackageHandler >> load:
  535. + AmdPackageHandler >> load:
  536. + Set >> removeAll
  537. + AssociativeCollection class
  538. + BucketStore class
  539. + SmalltalkImage >>
  540. + globals
  541. + vm
  542. + settings
  543. + Setting class
  544. + String >>
  545. + asSetting
  546. + asSettingIfAbsent:
  547. + settingValue
  548. + settingValueIfAbsent:
  549. + settingValue:
  550. + Smalltalk global variable
  551. - CompiledMethod >>
  552. - category: (use #protocol:)
  553. - defaultCategory
  554. - Behavior >> compile:category:
  555. - HTMLCanvas class >>
  556. - browserVersion
  557. - isMSIE
  558. - isMozilla
  559. - isOpera
  560. - isWebkit
  561. 0.12.2:
  562. * Collection >> contains: is deprecated in favor of anySatisfy:
  563. + Announcer >> on:doOnce:
  564. + String >>
  565. + uriEncoded
  566. + uriDecoded
  567. + uriComponentEncoded
  568. + uriComponentDecoded
  569. + Collection >>
  570. + removeAll
  571. + ifEmpty:ifNotEmpty:
  572. + ifNotEmpty:ifEmpty:
  573. + anyOne
  574. + noneSatisfy:
  575. + anySatisfy:
  576. + allSatisfy:
  577. 0.12.0:
  578. * SmalltalkMethodContext.prototype.fillBlock() takes a third 'index' parameter
  579. * Existing classes moved to new KernelInfrastructure package
  580. * ImporterExporter
  581. * are now StreamExporters
  582. * aware of AMD namespaces
  583. * support transport types and commit channels
  584. + Node >>
  585. + nextChild
  586. + method
  587. + postCopy
  588. + isCascadeNode
  589. + isLastChild
  590. + BlockNode >>
  591. + nextNode:
  592. + nextChild
  593. + SendNode >>
  594. + isCascadeSendNode
  595. + shouldBeAliased
  596. + CompiledMethod >> sendTo:arguments:
  597. + Array >>
  598. + addFirst:
  599. + removeLast
  600. + Number >>
  601. + ceiling
  602. + floor
  603. + asNumber
  604. + //
  605. + cos
  606. + sin
  607. + tan
  608. + arcCos
  609. + arcSin
  610. + arcTan
  611. + log
  612. + log:
  613. + raisedTo:
  614. + sign
  615. + **
  616. + ln
  617. + e
  618. + String class >> esc
  619. + String >>
  620. + asMutator
  621. + capitalized
  622. + isCapitalized
  623. + JSProxy >> printString
  624. + Behavior >>
  625. + ownProtocols
  626. + ownMethods
  627. + JSStream >> nextPutSendIndexFor:
  628. + InterfacingObject class
  629. + Interpreter class
  630. + DocumentFragmentTag class
  631. + AbstractExporter class
  632. + PlatformInterface class
  633. - Node >> extent
  634. - JSStream >> nextPutStatement:with:
  635. - Smalltalk.installSuperclass()
  636. - ClassReferenceNode class (now handled via VariableNode)
  637. 0.11.0:
  638. * AnnouncementSubscription use #valuable: instead of #block: (deprecated)
  639. * AbstractCodeGenerator inherits from Object, not NodeVisitor
  640. * Object>>printString
  641. * replace >>printString with >>printOn:
  642. * replace >>storeString with >>printString
  643. * PackageLoader is now PackageHandler (>>commit: >>setupPackagenamed:prefix: >>ajaxPutAt:data:
  644. * Package>>fetch: is now Package>>load:
  645. * Package>>fetch:prefix: is now Package>>load:prefix:
  646. * Queue>>front replaced by Queue>>next
  647. * Queue>>frontIfAbsent: replaced by Queue>>nextIfAbsent:
  648. * Queue>>back: replaced by Queue>>nextPut:
  649. * smalltalk.addMethod() does not use explicit JS selector
  650. * JSObjectProxy>>canForwardMessage: replaced by use of JSObjectProxy>>lookupProperty: with asJavaScriptSelector
  651. * JSObjectProxy>>forwardMessage: replaced by explicit JSObjectProxy>>forwardMessage:withArguments:
  652. * String>>asJavaScriptSelector moved to Kernel-Objects package
  653. + Object>>asString
  654. + Object>>putOn:
  655. + String>>isVowel
  656. + Collection>>putOn:
  657. + CharacterArray>>putOn:
  658. + Stream>><<
  659. + Stream>>write
  660. + SequenceableCollection>>newStream
  661. + SequenceableCollection>>readStream
  662. + SequenceableCollection>>stream
  663. + SequenceableCollection>>streamClass
  664. + SequenceableCollection>>writeStream
  665. + Collection>>isImmutable
  666. + Stream>>nextPutString:
  667. + StringStream>>nextPutString:
  668. + JSStream>>nextPutClassRefFunction:
  669. + String>>crlfSanitized
  670. + inlined Block now also responds to >>value:
  671. + Parser: split literal into runtimeLiteral and parseTimeLiteral
  672. + Parser: write #(4 #(5 6 #()) 7) as #(4 (5 6 ()) 7)
  673. + Parser: write #(#on:do: #Object) as #(on:do: Object)
  674. + Parser: Symbols for binarie selectores
  675. + Package>>commit
  676. + AIContext>>initializeLocals
  677. + ASTInterpreter>>withBlockContext:
  678. + smalltalk.allSelectors()
  679. + Object>>isCompiledMethod
  680. + Object>>isPackage
  681. + Object>>isBehavior
  682. + ClassMoved Announcemen class
  683. + Behavior>>includesBehavior:
  684. + Environment>>classes
  685. + Environment>>allSelectors
  686. + Environment>>removeProtocol:
  687. + Environment>>renameProtocol:to:in:
  688. + CompiledMethod>>protocol:
  689. + Smalltalk>>globalJsVariables
  690. + Smalltalk>>addGlobalJsVariable:
  691. + Smalltalk>>deleteGlobalJsVariable:
  692. - Object>>storeOn:
  693. - Object>>log:block:
  694. - Object>>printNl
  695. - Compiler-IR.st >>javascriptSelector
  696. - Compiler-IR.st >>nextPutVar:
  697. - Kernel-Collections.st >>asSuperSelector
  698. - Collection>>readStream
  699. - Collection>>stream
  700. - Collection>>streamClass
  701. - Collection>>writeStream
  702. - Symbol class (replaced with String)
  703. - IRInlinedNonLocalReturn class
  704. - IRInlinedSend>>nonLocalReturnInliner
  705. - IRNonLocalReturnInliner class
  706. - Package>>dependencies
  707. - Package>>dependencies:
  708. - Package>>properties
  709. - Package>>jsProperties
  710. - Package>>jsProperties:
  711. - Package>>propertiesAsJSON
  712. - Package>>propertyAt:
  713. - Package>>propertyAt:ifAbsent:
  714. - Package>>propertyAt:put:
  715. - Browser>>ajaxPutAt:data: