API-CHANGES.txt 19 KB

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