API-CHANGES.txt 16 KB

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